old and unused files from the SoC

svn path=/trunk/playground/graphics/okular/; revision=617259
This commit is contained in:
Pino Toscano 2006-12-28 15:09:22 +00:00
parent 451e99ece0
commit 936ee20de5
2 changed files with 0 additions and 89 deletions

View file

@ -1,50 +0,0 @@
/***************************************************************************
* Copyright (C) 2006 by Chu Xiaodong <xiaodongchu@gmail.com> *
* *
* 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 "core/document.h"
#include "embeddedannotationdialog.h"
EmbeddedAnnotationDialog::EmbeddedAnnotationDialog( QWidget * parent, Annotation * annot)
: QDialog(parent,0)
{
m_annot=annot;
setObjectName(QString::fromUtf8("Dialog"));
resize(QSize(260, 220).expandedTo(minimumSizeHint()));
setWindowIcon(QIcon());
setSizeGripEnabled(true);
textEdit = new QTextEdit(this);
textEdit->setObjectName(QString::fromUtf8("textEdit"));
textEdit->setGeometry(QRect(3, 3, 256, 201));
if(annot)
textEdit->setPlainText(annot->window.text);
// textEdit->setBackgroundColor(QColor::fromRgb(255,255,0));
QPalette pl;
pl=palette();
this->setPalette(QPalette(Qt::yellow));
pl=textEdit->palette();
pl.setColor(QPalette::Background,Qt::yellow);
setPalette(pl);
// pl.setColor(QPalette::Window,QColor(255,0,0));
// pl.setColor(QPalette::Background,QColor(255,0,0));
// pl.setColor(QPalette::AlternateBase,QColor(255,0,0));
pl.setColor(QPalette::Base,Qt::yellow);
textEdit->setPalette(pl);
// textEdit->setTextColor(QColor(0,255,0));
// textEdit->set
//retranslateUi(Dialog);
setWindowTitle(QApplication::translate("Dialog", "", 0, QApplication::UnicodeUTF8));
// Q_UNUSED(this);
// QMetaObject::connectSlotsByName(this);
}
#include "embeddedannotationdialog.moc"

View file

@ -1,39 +0,0 @@
/***************************************************************************
* Copyright (C) 2006 by Chu Xiaodong <xiaodongchu@gmail.com> *
* *
* 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 _EMBEDDEDANNOTATIONDIALOG_H
#define _EMBEDDEDANNOTATIONDIALOG_H
#include <kdialog.h>
#include <QDialog>
#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QDialog>
#include <QtGui/QTextEdit>
#include "core/annotations.h"
class EmbeddedAnnotationDialog : public QDialog
{
Q_OBJECT
public:
EmbeddedAnnotationDialog( QWidget * parent, Annotation * annot);
public:
QTextEdit *textEdit;
Annotation* m_annot;
};
#endif // _EMBEDDEDANNOTATIONDIALOG_H