Initial commit
[tietoopcom] / include / TocUi / tocgeneralsettingswidget.h
1 /** \file TocGeneralSettingsWidget.h
2  * \brief Declaration of TocGeneralSettingsWidget class
3  * 
4  * Tieto Open Communicator - Client for the Telepathy communications framework.
5  * Copyright (c) 2010, Tieto Corporation
6  *
7  * All rights reserved.
8  * Redistribution and use in source and binary forms, with or without modification,
9  * are permitted provided that the following conditions are met:
10  *
11  *      Redistributions of source code must retain the above copyright notice,
12  *      this list of conditions and the following disclaimer.
13  *      Redistributions in binary form must reproduce the above copyright notice,
14  *      this list of conditions and the following disclaimer in the documentation
15  *      and/or other materials provided with the distribution.
16  *      Neither the name of the Tieto Corporation nor the names of its contributors 
17  *      may be used to endorse or promote products derived from this software without
18  *      specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23  * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  * 
30  */
31
32 #ifndef TOCGENERALSETTINGSWIDGET_H
33 #define TOCGENERALSETTINGSWIDGET_H
34
35 #include <QWidget>
36 #include "defs.h"
37
38 class Ui_TocGeneralSettingsWidgetClass;
39
40 QT_BEGIN_NAMESPACE
41
42 /** \brief TocGeneralSettingsWidget class
43  * 
44  * Configuration window for general application settings. 
45  */
46 class TocGeneralSettingsWidget : public QWidget
47 {
48         Q_OBJECT
49
50 public:
51
52         /**
53          * Public Constructor
54          */
55         TocGeneralSettingsWidget( QWidget * parent = 0, Qt::WindowFlags flags = 0 );
56
57         /**
58          * Destructor
59          */
60         ~TocGeneralSettingsWidget();
61
62 signals:
63
64         /** \brief Signal connected to returnToContacts() slot in TocMainWindow
65          * 
66          */
67         void finished();
68
69         /** \brief Signal connected to returnToSettings() slot in TocMainWindow
70          * 
71          */
72         void backClicked();
73
74 private slots:
75
76         /** \brief Used to save general settings
77          * 
78          * This slot is used when user clicks on the Ok button.
79          * Information in UI are saved into TocSettings 
80          */
81         void saveGeneralSettings();
82
83 private: // Members
84
85         Ui_TocGeneralSettingsWidgetClass* ui;                   /// Ui definition header
86 };
87
88 QT_END_NAMESPACE
89
90 #endif // TOCGENERALSETTINGSWIDGET_H