summaryrefslogtreecommitdiffstats
path: root/kbugbuster/gui/packagelvi.h
diff options
context:
space:
mode:
Diffstat (limited to 'kbugbuster/gui/packagelvi.h')
-rw-r--r--kbugbuster/gui/packagelvi.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/kbugbuster/gui/packagelvi.h b/kbugbuster/gui/packagelvi.h
new file mode 100644
index 00000000..32f48642
--- /dev/null
+++ b/kbugbuster/gui/packagelvi.h
@@ -0,0 +1,51 @@
+/*
+ packagelvi.h - Custom QListViewItem that holds a Package object
+
+ copyright : (c) 2001 by Martijn Klingens
+ email : klingens@kde.org
+
+ *************************************************************************
+ * *
+ * 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. *
+ * *
+ *************************************************************************
+*/
+
+#ifndef PACKAGELVI_H
+#define PACKAGELVI_H
+
+#include <qlistview.h>
+
+#include "package.h"
+
+/**
+ * @author Martijn Klingens
+ */
+class PackageLVI : public QListViewItem
+{
+public:
+ // Top-level package
+ PackageLVI( QListView *parent , const Package &pkg, const QString &component );
+ // Child component
+ PackageLVI( QListViewItem *parent , const Package &pkg, const QString &component );
+
+ ~PackageLVI();
+
+ Package& package() { return m_package; }
+ void setPackage( const Package &pkg ) { m_package = pkg; }
+
+ QString component() { return m_component; }
+ void setComponent( const QString &component ) { m_component = component; }
+
+private:
+ Package m_package;
+ QString m_component;
+};
+
+#endif // PACKAGELVI_H
+
+/* vim: set et ts=4 softtabstop=4 sw=4: */
+