summaryrefslogtreecommitdiffstats
path: root/kdpkg-install/install.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-04-03 02:35:45 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-04-03 02:35:45 +0000
commit7f4a6a18c55be5b74ab3782f63509157a9a25afc (patch)
treeca86feaa6b8f013654038663b113e106debdca00 /kdpkg-install/install.h
downloadkdpkg-7f4a6a18c55be5b74ab3782f63509157a9a25afc.tar.gz
kdpkg-7f4a6a18c55be5b74ab3782f63509157a9a25afc.zip
Initial import of kdpkg Debian package installer
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdpkg@1110433 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdpkg-install/install.h')
-rw-r--r--kdpkg-install/install.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/kdpkg-install/install.h b/kdpkg-install/install.h
new file mode 100644
index 0000000..96f1844
--- /dev/null
+++ b/kdpkg-install/install.h
@@ -0,0 +1,66 @@
+/*
+ * kdpg.h
+ *
+ * Copyright (c) 2007 Fabian Wuertz
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#ifndef INSTALL_H_
+#define INSTALL_H_
+
+#include <installdialog.h>
+
+#include <kde_terminal_interface.h>
+#include <kparts/part.h>
+#include <process.h>
+#include <qprocess.h>
+
+class install : public InstallDialog
+{
+ Q_OBJECT
+
+ public:
+ install(const QString &url = QString(), QWidget *parent = 0L, const char *name = 0L, const QStringList &foo = QStringList());
+ QString installPkg;
+ QString removePkg;
+ QString path;
+ QStringList fields;
+ bool isInstalled(QString);
+ bool checkArchitecture();
+ bool isLocked();
+
+
+
+ private:
+ Process* shell;
+
+
+ public slots:
+ virtual void showAbout();
+ virtual void page1();
+ virtual void page2x1();
+ virtual void page2x2();
+ virtual void page3();
+ virtual void page4();
+ virtual void showDependencies();
+ virtual void next1();
+ virtual void next2();
+
+ signals:
+ void exit(bool);
+
+};
+
+#endif