Fix akonadimodel.cpp:1: warning: unterminated character constant
[kdepim.git] / kaddressbook / mainwindow.h
blobb91d669564ee80790d77be83905fd99c715b6445
1 /*
2 This file is part of KAddressBook.
4 Copyright (c) 2007 Tobias Koenig <tokoe@kde.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef MAINWINDOW_H
22 #define MAINWINDOW_H
24 #include <kxmlguiwindow.h>
26 class MainWidget;
28 class MainWindow : public KXmlGuiWindow
30 Q_OBJECT
32 public:
33 MainWindow();
34 ~MainWindow();
36 private Q_SLOTS:
37 void configure();
38 void configureKeyBindings();
39 void configureToolbars();
40 void newToolbarConfig();
42 private:
43 void initActions();
45 MainWidget *mMainWidget;
48 #endif