summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/pmipkg.h
blob: 062503234652071230fd34da409439ac3ea612fe (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
#ifndef PMIPKG_H
#define PMIPKG_H


#include <qobject.h>
#include <qlist.h>
#include <qstring.h>
#include <qwidget.h>
#include "pksettings.h"
#include "runwindow.h"
#include "packagelist.h"
#include "debug.h"

#define createLink 0
#define removeLink 1

class Package;
class PmIpkg : public QObject
{
  Q_OBJECT
public:
  PmIpkg( PackageManagerSettings* , QWidget* p=0,  const char * name=0, WFlags f=0 );
  ~PmIpkg();

  int linkOpp;
  void commit( PackageList );
  void update();
 // PackageList* getPackageList();
  void showButtons(bool b=true);
  void show( bool buttons=true );

public slots:
	void doIt();
 	void install();
  void remove();
  void installFile(const QString &fileName, const QString &dest="");
  void removeFile(const QString &fileName, const QString &dest="");
  void createLinks( const QString &dest );
  void removeLinks( const QString &dest );

private:
  PackageManagerSettings* settings;
  RunWindow *runwindow;
  QDialog *installDialog;
  QList<Package> to_remove;
  QList<Package> to_install;
  bool runwindowopen;
  QString fileNameToInstall;
  QCheckBox *_force_reinstall;
  QCheckBox *_force_remove;
  QCheckBox *_force_depends;
  void startDialog();
  void makeLinks(Package*);
  void linkPackage( QString, QString );
  void processLinkDir( QString , QString );
  int  runIpkg(const QString& args, const QString& dest="" );
  void out( QString );
	QStringList* getList( QString, QString );
	void processFileList( QStringList*, QString );
 	

};

#endif