summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit/mainwindow.h
blob: 23aca52adacfb316fb4209cfe8d513d93bbccf58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/***************************************************************************
 *                                                                         *
 *   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 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

// (c) 2002 Patrick S. Vogt <tille@handhelds.org>

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <qmainwindow.h>
#include <qdialog.h>
#include <qaction.h>
#include <qtimer.h>
#include <qpopupmenu.h>
#include "editwidget.h"

class QToolBar;
class ListViewItemConfFile;
class ListViewConfDir;
class ListViewItemConf;

class MainWindow : public QMainWindow
{
    Q_OBJECT


public:
  MainWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
  ~MainWindow();
  static QString appName() { return QString::fromLatin1("confedit"); }

public slots:
  void setCurrent(QListViewItem*);
  void groupChanged(const QString&);
  void keyChanged(const QString&);
  void valueChanged(const QString&);
  void showPopup();
  void stopTimer( QListViewItem* );
  void saveConfFile();
  void revertConfFile();
  void removeConfFile();

private:
	ListViewConfDir *settingList;
 	EditWidget *editor;
  QVBoxLayout *mainLayout;
  ListViewItemConf *_item;
  ListViewItemConfigEntry *_currentItem;
  ListViewItemConfFile *_fileItem;
  QTimer *popupTimer;
  QPopupMenu *popupMenuFile;
  QPopupMenu *popupMenuEntry;
	QAction *popupActionSave;
	QAction *popupActionRevert;
	QAction *popupActionDelete;
	QAction *popupActionNew;
//	QAction *popupAction;
//	QAction *popupAction;

  void makeMenu();
};

#endif