aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm/ScrollDialog.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-04-25 13:08:12 -0400
committerKen Moore <moorekou@gmail.com>2016-04-25 13:08:12 -0400
commited5ecf7ea7a482b4649e66ecb35fbc60af680684 (patch)
treeacc0fa17d228259e847f55c678db9fb0a9b50f0c /src-qt5/desktop-utils/lumina-fm/ScrollDialog.h
parentMerge branch 'master' of github.com:pcbsd/lumina (diff)
downloadlumina-ed5ecf7ea7a482b4649e66ecb35fbc60af680684.tar.gz
lumina-ed5ecf7ea7a482b4649e66ecb35fbc60af680684.tar.bz2
lumina-ed5ecf7ea7a482b4649e66ecb35fbc60af680684.zip
Rearrange the Lumina source tree quite a bit:
Now the utilites are arranged by category (core, core-utils, desktop-utils), so all the -utils may be excluded by a package system (or turned into separate packages) as needed.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm/ScrollDialog.h')
-rw-r--r--src-qt5/desktop-utils/lumina-fm/ScrollDialog.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/ScrollDialog.h b/src-qt5/desktop-utils/lumina-fm/ScrollDialog.h
new file mode 100644
index 00000000..eefe62f4
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-fm/ScrollDialog.h
@@ -0,0 +1,55 @@
+//===========================================
+// Lumina-DE source code
+// Copyright (c) 2014, Ken Moore
+// Available under the 3-clause BSD license
+// See the LICENSE file for full details
+//===========================================
+// This is the dialog for showing a lot of text in a scrollable format (instead of QMessageBox)
+//===========================================
+#ifndef _LUMINA_FILE_MANAGER_SCROLL_DIALOG_H
+#define _LUMINA_FILE_MANAGER_SCROLL_DIALOG_H
+
+#include <QDialog>
+#include <QVBoxLayout>
+#include <QTextEdit>
+#include <QDialogButtonBox>
+
+class ScrollDialog : public QDialog{
+ Q_OBJECT
+
+private:
+ QDialogButtonBox *buttons;
+ QTextEdit *label;
+ QVBoxLayout *layout1;
+
+public:
+ ScrollDialog(QWidget *parent = 0) : QDialog(parent){
+ //Create the widgets
+ buttons = new QDialogButtonBox(QDialogButtonBox::Ok, Qt::Horizontal, this);
+ label = new QTextEdit(this);
+ label->setReadOnly(true);
+ label->setWordWrapMode(QTextOption::NoWrap);
+ layout1 = new QVBoxLayout(this);
+ //Put them in the dialog
+ layout1->addWidget(label);
+ layout1->addWidget(buttons);
+ this->setLayout(layout1);
+ //Connect signals/slots
+ connect(buttons, SIGNAL(accepted()), this, SLOT(accept()) );
+ connect(buttons, SIGNAL(rejected()), this, SLOT(reject()) );
+ //Set a useful size/position
+ this->resize(400,200);
+ if(parent!=0){
+ QPoint ctr = parent->mapToGlobal(parent->geometry().center());
+ this->move( ctr.x()-(this->width()/2), ctr.y()-(this->height()/2) );
+ }
+ }
+ ~ScrollDialog(){}
+
+ void setText(QString txt){
+ label->setPlainText(txt);
+ //this->resize( label->fontMetrics().width(txt.section("\n",0,0))+30, this->height());
+ }
+
+};
+#endif \ No newline at end of file
bgstack15