/src/kandas-client/adddialog.h
http://kandas.googlecode.com/ · C Header · 51 lines · 27 code · 7 blank · 17 comment · 0 complexity · d7d5a1a19c975b2e1448d536b9401350 MD5 · raw file
- /***************************************************************************
- * Copyright 2009 Stefan Majewsky <majewsky@gmx.net>
- *
- * 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.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- ***************************************************************************/
- #ifndef KANDAS_CLIENT_ADDDIALOG_H
- #define KANDAS_CLIENT_ADDDIALOG_H
- #include <KDialog>
- #include "ui_adddialog.h"
- namespace Kandas
- {
- namespace Client
- {
- class Manager;
- class AddDialog : public KDialog
- {
- Q_OBJECT
- public:
- AddDialog(Kandas::Client::Manager *manager);
- public Q_SLOTS:
- void showDialog();
- private Q_SLOTS:
- void handleInput();
- void handleOkClicked();
- private:
- Kandas::Client::Manager *m_manager;
- QWidget *m_widget;
- Ui::AddDialogWidget m_ui;
- };
- }
- }
- #endif // KANDAS_CLIENT_ADDDIALOG_H