diff options
Diffstat (limited to 'src/showfoto/setup/setupeditor.h')
-rw-r--r-- | src/showfoto/setup/setupeditor.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/src/showfoto/setup/setupeditor.h b/src/showfoto/setup/setupeditor.h new file mode 100644 index 00000000..877af8de --- /dev/null +++ b/src/showfoto/setup/setupeditor.h @@ -0,0 +1,63 @@ +/* ============================================================ + * + * This file is a part of digiKam project + * http://www.digikam.org + * + * Date : 2005-04-02 + * Description : setup showfoto tab. + * + * Copyright (C) 2005-2008 by Gilles Caulier <caulier dot gilles at gmail dot com> + * + * 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, 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. + * + * ============================================================ */ + +#ifndef SETUPEDITOR_H +#define SETUPEDITOR_H + +// TQt includes. + +#include <tqwidget.h> + +namespace ShowFoto +{ + +class SetupEditorPriv; + +class SetupEditor : public TQWidget +{ + TQ_OBJECT + + +public: + + SetupEditor(TQWidget* parent=0); + ~SetupEditor(); + + void applySettings(); + +private slots: + + void slotThemeBackgroundColor(bool); + +private: + + void readSettings(); + +private: + + SetupEditorPriv* d; +}; + +} // namespace ShowFoto + +#endif /* SETUPEDITOR_H */ |