~ubuntu-branches/ubuntu/wily/zanshin/wily-proposed

« back to all changes in this revision

Viewing changes to src/mainwindow.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2009-08-13 23:19:32 UTC
  • Revision ID: james.westby@ubuntu.com-20090813231932-lewqphiry1qs7w80
Tags: upstream-0.1+svn1006410
ImportĀ upstreamĀ versionĀ 0.1+svn1006410

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of Zanshin Todo.
 
2
 
 
3
   Copyright 2008 Kevin Ottens <ervin@kde.org>
 
4
 
 
5
   This program is free software; you can redistribute it and/or
 
6
   modify it under the terms of the GNU General Public License as
 
7
   published by the Free Software Foundation; either version 2 of
 
8
   the License or (at your option) version 3 or any later version
 
9
   accepted by the membership of KDE e.V. (or its successor approved
 
10
   by the membership of KDE e.V.), which shall act as a proxy
 
11
   defined in Section 14 of version 3 of the license.
 
12
 
 
13
   This program is distributed in the hope that it will be useful,
 
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
16
   GNU General Public License for more details.
 
17
 
 
18
   You should have received a copy of the GNU General Public License
 
19
   along with this program; if not, write to the Free Software
 
20
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
 
21
   USA.
 
22
*/
 
23
 
 
24
#ifndef ZANSHIN_MAINWINDOW_H
 
25
#define ZANSHIN_MAINWINDOW_H
 
26
 
 
27
#include <KDE/KXmlGuiWindow>
 
28
 
 
29
#include <QtCore/QModelIndex>
 
30
 
 
31
#include <akonadi/collection.h>
 
32
 
 
33
class ActionListEditor;
 
34
class SideBar;
 
35
 
 
36
class MainWindow : public KXmlGuiWindow
 
37
{
 
38
    Q_OBJECT
 
39
 
 
40
public:
 
41
    MainWindow(QWidget *parent = 0);
 
42
 
 
43
protected slots:
 
44
    void saveAutoSaveSettings();
 
45
    void showConfigDialog();
 
46
    void applySettings();
 
47
 
 
48
protected:
 
49
    virtual void closeEvent(QCloseEvent *event);
 
50
 
 
51
private:
 
52
    void setupCentralWidget();
 
53
    void setupSideBar();
 
54
    void setupActions();
 
55
 
 
56
    void saveColumnsState();
 
57
    void restoreColumnState();
 
58
 
 
59
    SideBar *m_sidebar;
 
60
    ActionListEditor *m_editor;
 
61
};
 
62
 
 
63
#endif
 
64