mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
72 lines
1.9 KiB
C++
72 lines
1.9 KiB
C++
#include <kcmodule.h>
|
|
#include <kcmultidialog.h>
|
|
/*
|
|
* Copyright (C) 2009 by Laurent Montel <montel@kde.org>
|
|
*
|
|
* 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 KTIMETRACKERCONFIGDIALOG_H
|
|
#define KTIMETRACKERCONFIGDIALOG_H
|
|
|
|
|
|
class KTimeTrackerConfigDialog
|
|
: public KCMultiDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
KTimeTrackerConfigDialog( const QString &title,
|
|
QWidget *parent );
|
|
~KTimeTrackerConfigDialog();
|
|
|
|
public slots:
|
|
void slotOk();
|
|
};
|
|
|
|
class KTimeTrackerBehaviorConfig : public KCModule
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
KTimeTrackerBehaviorConfig( const KComponentData &inst, QWidget *parent );
|
|
/** Reimplemented from KCModule. */
|
|
virtual void load();
|
|
virtual void save();
|
|
};
|
|
|
|
class KTimeTrackerDisplayConfig : public KCModule
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
KTimeTrackerDisplayConfig( const KComponentData &inst, QWidget *parent );
|
|
/** Reimplemented from KCModule. */
|
|
virtual void load();
|
|
virtual void save();
|
|
};
|
|
|
|
class KTimeTrackerStorageConfig : public KCModule
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
KTimeTrackerStorageConfig( const KComponentData &inst, QWidget *parent );
|
|
/** Reimplemented from KCModule. */
|
|
virtual void load();
|
|
virtual void save();
|
|
};
|
|
|
|
#endif /* KTIMETRACKERCONFIGDIALOG_H */
|
|
|