Initial commit
[keepassx] / src / dialogs / CustomizeDetailViewDlg.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2006 by Tarek Saidi                                *
3  *   tarek.saidi@arcor.de                                                  *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; version 2 of the License.               *
8
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20 #ifndef _CUSTOMIZE_DETAIL_VIEW_H_
21 #define _CUSTOMIZE_DETAIL_VIEW_H_
22
23 #include "ui_CustomizeDetailViewDlg.h"
24
25 class CustomizeDetailViewDialog : public QDialog, private Ui_CustomizeDetailViewDialog{
26         Q_OBJECT
27         public:
28                 CustomizeDetailViewDialog(QWidget* parent);
29                 
30         private slots:
31                 void OnBtnBold(bool);
32                 void OnBtnItalic(bool);
33                 void OnBtnUnderline(bool);
34                 void OnBtnAlignLeft();
35                 void OnBtnAlignRight();
36                 void OnBtnAlignCenter();
37                 void OnBtnAlignBlock();
38                 void OnBtnColor();
39                 void OnSave();
40                 void OnCancel();
41                 void OnRestoreDefault(QAbstractButton* button);
42                 void OnInsertTemplate(QAction*);
43                 void OnCursorPositionChanged();
44                 void OnTabChanged(int index);
45                 void OnFontSizeChanged(const QString& text=QString());
46         
47         private:
48                 QColor CurrentColor;
49
50
51 };
52
53 #endif