summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/dub/dub/dubview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'noatun-plugins/dub/dub/dubview.cpp')
-rw-r--r--noatun-plugins/dub/dub/dubview.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/noatun-plugins/dub/dub/dubview.cpp b/noatun-plugins/dub/dub/dubview.cpp
new file mode 100644
index 0000000..e1e4713
--- /dev/null
+++ b/noatun-plugins/dub/dub/dubview.cpp
@@ -0,0 +1,63 @@
+/***************************************************************************
+ dubview.cpp - description
+ -------------------
+ begin : Tue Oct 23 01:44:51 EEST 2001
+ copyright : (C) 2001 by Eray Ozkural (exa)
+ email : erayo@cs.bilkent.edu.tr
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ ***************************************************************************/
+
+// include files for Qt
+#include <qprinter.h>
+#include <qpainter.h>
+#include <kdebug.h>
+
+// application specific includes
+#include "dubview.h"
+#include "dubview.moc"
+#include "dub.h"
+#include "fileselectorwidget.h"
+
+//DubView::DubView(QWidget *parent, const char *name) : QWidget(parent, name)
+//{
+// setBackgroundMode(PaletteBase);
+//}
+
+DubView::DubView(QWidget *parent) : FileSelectorWidget(parent)
+{
+ kdDebug(90010) << "dub view cons" << endl;
+ setBackgroundMode(PaletteBase);
+}
+
+DubView::~DubView()
+{
+}
+
+void DubView::print(QPrinter *pPrinter)
+{
+ QPainter printpainter;
+ printpainter.begin(pPrinter);
+
+ // TODO: add your printing code here
+
+ printpainter.end();
+}
+/** Return item list of view */
+QPtrList<KFileItem>& DubView::items()
+{
+ return const_cast<QPtrList<KFileItem>&>( *dirOperator()->view()->items() );
+}
+
+/** Select a file */
+void DubView::selectFile(KFileItem* file){
+ dirOperator()->view()->setCurrentItem( file );
+ dirOperator()->view()->ensureItemVisible( file );
+}