/*************************************************************************** appmenuwidget.cpp - The main Qt/KDE window ------------------- begin : Tue Sep 16 00:00:00 CET 2008 copyright : (C) 2008 by Danilo Balzaque email : danilo.balzaque@ltia.fc.unesp.br copyright : (C) 2008 by Tadeu Araujo, tadeu.araujo@ltia.fc.unesp.br ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "AppMenuWidget.h" #include "AppMenuWidget.moc" /* these includes are needed for KDE support */ #include #include #include #include #include #include #include #include #include /* these includes are needed for Qt support */ #include #include #include #include #include "ui_taskcolorsbase.h" #include "ui_taskfontsbase.h" #include "settingsclass.h" //Added by qt3to4: #include /* standard C++ library includes */ #include /* ----- public member functions ----- */ /* constructor */ AppMenuWidget::AppMenuWidget() { #ifdef DEBUG kDebug() << "constructor AppMenuWidget"; #endif setupActions(); createGUI("AppMenuWidgetui.rc"); QString css = "QPushButton#m_Freestyle {" "border: none;" "image: url(" + KStandardDirs::locate("data", "kbruch/pics/icon_freestyle_1.png") + ");" "}" "QPushButton#m_Freestyle:hover {" "border: none;" "image: url(" + KStandardDirs::locate("data", "kbruch/pics/icon_freestyle.png") + ");" "}" "QPushButton#m_Learning {" "border: none;" "image: url(" + KStandardDirs::locate("data", "kbruch/pics/icon_learning_1.png") + ");" "}" "QPushButton#m_Learning:hover {" "border: none;" "image: url(" + KStandardDirs::locate("data", "kbruch/pics/icon_learning.png") + ");" "}" "QLabel#labelInfo, QLabel#labelFreestyle, QLabel#labelLearning" "{ font: bold 20px; }"; setStyleSheet(css); QFont defaultFont = SettingsClass::taskFont(); defaultFont.setBold( true ); defaultFont.setPointSize(26); layout1 = new QHBoxLayout(); layout1->setObjectName( "layout1" ); layout1->setAlignment(Qt::AlignCenter); baseWidget = new QWidget(); baseWidget->setObjectName( "baseWidget" ); setCentralWidget(baseWidget); interfaceWidget = new QWidget(this); interfaceWidget->setObjectName( "interfaceWidget" ); interfaceWidget->setFixedSize(QSize(550, 350)); gridLayout = new QGridLayout(); gridLayout->setObjectName( "gridLayout" ); labelInfo = new QLabel(this); labelInfo->setObjectName( "labelInfo" ); labelInfo->setText(i18n("KBruch modes:")); labelInfo->setFont(defaultFont); gridLayout->addWidget(labelInfo, 0, 0, 1, 2); // Freestyle mode ---------------------------- m_Freestyle = new QPushButton(this); m_Freestyle->setObjectName( "m_Freestyle" ); m_Freestyle->setToolTip(i18n("Open standard KBruch")); m_Freestyle->setFixedSize(QSize(150, 197)); gridLayout->addWidget(m_Freestyle, 1, 0, Qt::AlignCenter); labelFreestyle = new QLabel(this); labelFreestyle->setObjectName( "labelFreestyle" ); labelFreestyle->setText(i18n("Freestyle")); labelFreestyle->setFont(defaultFont); gridLayout->addWidget(labelFreestyle, 2, 0, Qt::AlignCenter); QObject::connect(m_Freestyle, SIGNAL(clicked()), this, SLOT(slotFreestyleClicked())); // Learning mode ---------------------------- m_Learning = new QPushButton(this); m_Learning->setObjectName( "m_Learning" ); m_Learning->setToolTip(i18n("Open learning KBruch")); m_Learning->setFixedSize(QSize(150, 197)); gridLayout->addWidget(m_Learning, 1, 1, Qt::AlignCenter); labelLearning = new QLabel(this); labelLearning->setObjectName( "labelLearning" ); labelLearning->setText(i18n("Learning")); labelLearning->setFont(defaultFont); gridLayout->addWidget(labelLearning, 2, 1, Qt::AlignCenter); QObject::connect(m_Learning, SIGNAL(clicked()), this, SLOT(slotLearningClicked())); gridLayout->setRowMinimumHeight(0, 30); gridLayout->setRowMinimumHeight(1, 250); gridLayout->setRowMinimumHeight(2, 70); interfaceWidget->setLayout(gridLayout); layout1->addWidget(interfaceWidget); baseWidget->setLayout(layout1); move(50, 50); setFixedSize(QSize(742, 520)); } /* destructor */ AppMenuWidget::~AppMenuWidget() { #ifdef DEBUG kDebug() << "destructor AppMenuWidget()"; #endif /* no need to delete any child widgets, Qt does it by itself */ } void AppMenuWidget::setupActions() { #ifdef DEBUG kDebug() << "setupActions FractionRingWidget"; #endif // quit action KStandardAction::quit(kapp, SLOT(quit()), actionCollection()); if (!initialGeometrySet()) resize(QSize(725, 330).expandedTo(minimumSizeHint())); setupGUI(Keys | Create); setAutoSaveSettings(); } void AppMenuWidget::slotApplySettings() { #ifdef DEBUG kDebug() << "slotApplySettings FractionRingWidget"; #endif return; } /* ------ private slots ------ */ void AppMenuWidget::slotFreestyleClicked() { kbruchApp = new MainQtWidget(); kbruchApp->show(); hide(); return; } void AppMenuWidget::slotLearningClicked() { fractionRing = new FractionRingWidget(); fractionRing->show(); hide(); return; }