You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.2 KiB
82 lines
2.2 KiB
15 years ago
|
/*
|
||
13 years ago
|
This file is part of libtdepim.
|
||
15 years ago
|
|
||
|
Copyright (c) 2004 Tobias Koenig <tokoe@kde.org>
|
||
|
Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2 of the License, or (at your option) any later version.
|
||
|
|
||
|
This library 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
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to
|
||
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
#ifndef KPIM_KCMDESIGNERFIELDS_H
|
||
|
#define KPIM_KCMDESIGNERFIELDS_H
|
||
|
|
||
|
#include <kcmodule.h>
|
||
13 years ago
|
#include <tdepimmacros.h>
|
||
15 years ago
|
|
||
|
class KListView;
|
||
|
|
||
14 years ago
|
class TQLabel;
|
||
|
class TQListViewItem;
|
||
|
class TQPushButton;
|
||
15 years ago
|
|
||
|
namespace KPIM {
|
||
|
|
||
|
class KDE_EXPORT KCMDesignerFields : public KCModule
|
||
|
{
|
||
|
Q_OBJECT
|
||
14 years ago
|
TQ_OBJECT
|
||
15 years ago
|
|
||
|
public:
|
||
13 years ago
|
KCMDesignerFields( TQWidget *parent = 0, const char *name = 0 );
|
||
15 years ago
|
|
||
|
virtual void load();
|
||
|
virtual void save();
|
||
|
virtual void defaults();
|
||
|
|
||
|
protected:
|
||
|
void loadUiFiles();
|
||
14 years ago
|
void loadActivePages(const TQStringList&);
|
||
|
TQStringList saveActivePages();
|
||
15 years ago
|
|
||
14 years ago
|
virtual TQString localUiDir() = 0;
|
||
|
virtual TQString uiPath() = 0;
|
||
|
virtual void writeActivePages( const TQStringList & ) = 0;
|
||
|
virtual TQStringList readActivePages() = 0;
|
||
|
virtual TQString applicationName() = 0;
|
||
15 years ago
|
|
||
|
private slots:
|
||
14 years ago
|
void updatePreview( TQListViewItem* );
|
||
|
void itemClicked( TQListViewItem* );
|
||
15 years ago
|
void startDesigner();
|
||
|
void rebuildList();
|
||
|
void deleteFile();
|
||
|
void importFile();
|
||
|
void delayedInit();
|
||
|
|
||
|
private:
|
||
|
void initGUI();
|
||
|
|
||
|
KListView *mPageView;
|
||
14 years ago
|
TQLabel *mPagePreview;
|
||
|
TQLabel *mPageDetails;
|
||
|
TQPushButton *mDeleteButton;
|
||
|
TQPushButton *mImportButton;
|
||
|
TQPushButton *mDesignerButton;
|
||
15 years ago
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|