summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/mainwindow.h
blob: ae9fd0c4f68f50ca01a51868b47f0d04e3b0a637 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/
// Copyright (C) 2000 Trolltech AS.
// adadpted form qpe/qipkg
// (c) 2002 Patrick S. Vogt <tille@handhelds.org>

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <qmainwindow.h>
#include <qaction.h>
#include <qtimer.h>
#include <qpopupmenu.h>

#include "package.h"
#include "packagelist.h"
#include "packagelistremote.h"
#include "packagelistlocal.h"
#include "packagelistdoclnk.h"
#include "pmipkg.h"
#include "pksettings.h"
#include "packagelistview.h"

class QComboBox;
class QToolBar;
class QLineEdit;
class PackageListItem;
class QCopChannel;
class QMessageBox;
class QCheckBox;

class MainWindow : public QMainWindow
{
    Q_OBJECT


public:
  MainWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 );
  ~MainWindow();

  QCopChannel *channel;

protected slots:
  void runIpkg();
  void updateList();
  void displayList();
  void subSectionChanged();
  void sectionChanged();
  void showSettings(int);
  void showSettingsSetup();
  void showSettingsSrv();
  void showSettingsDst();

public slots:
  void sectionClose();
  void sectionShow(bool);
  void findClose();
  void findShow(bool);
  void searchClose();
  void searchShow(bool);
  void destClose();
  void destShow(bool);
  void filterList();
  void createLinks();
  void removeLinks();
	void receive (const QCString &, const QByteArray &);
	void setDocument (const QString &);
  void remotePackageQuery();

private:
  void makeMenu();
  void makeChannel();
  void setSections();
  void setSubSections();
  bool updateIcon;

  PmIpkg* ipkg;
  PackageManagerSettings *settings;
  PackageListLocal  packageListServers;
  PackageListRemote packageListSearch;
  PackageListDocLnk packageListDocLnk;
  PackageListView *listViewPackages;
  QAction *runAction;
  QAction *updateAction;
  QAction *findAction;
  QToolBar *findBar;
  QLineEdit *findEdit;
  QAction *searchAction;
  QAction *searchCommit;
  QToolBar *searchBar;
  QLineEdit *searchEdit;
  QAction *sectionAction;
  QToolBar *sectionBar;
  QComboBox *section;
  QComboBox *subsection;
  QAction *destAction;
  QToolBar *destBar;
  QComboBox *destination;
  QCheckBox* CheckBoxLink;
};

#endif