diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kghostview/infodialog.cpp | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kghostview/infodialog.cpp')
-rw-r--r-- | kghostview/infodialog.cpp | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/kghostview/infodialog.cpp b/kghostview/infodialog.cpp index b9cc8a91..e429d712 100644 --- a/kghostview/infodialog.cpp +++ b/kghostview/infodialog.cpp @@ -17,11 +17,11 @@ * */ -#include <qframe.h> -#include <qlabel.h> -#include <qlayout.h> -#include <qdatetime.h> -#include <qregexp.h> +#include <tqframe.h> +#include <tqlabel.h> +#include <tqlayout.h> +#include <tqdatetime.h> +#include <tqregexp.h> #include <kdebug.h> #include <klocale.h> @@ -32,28 +32,28 @@ // // Using KDialogBase in message box mode (gives centered action button) // -InfoDialog::InfoDialog( QWidget *parent, const char *name, bool modal ) +InfoDialog::InfoDialog( TQWidget *parent, const char *name, bool modal ) :KDialogBase( i18n("Document Information"), Yes, Yes, Yes, parent, name, modal, true, KStdGuiItem::ok() ) { - QFrame *page = makeMainWidget(); - QVBoxLayout *topLayout = new QVBoxLayout( page, 0, spacingHint() ); - QGridLayout *glay = new QGridLayout( topLayout, 3, 2 ); + TQFrame *page = makeMainWidget(); + TQVBoxLayout *topLayout = new TQVBoxLayout( page, 0, spacingHint() ); + TQGridLayout *glay = new TQGridLayout( topLayout, 3, 2 ); glay->setColStretch(1,1); - QLabel *label = new QLabel( i18n("File name:" ), page ); + TQLabel *label = new TQLabel( i18n("File name:" ), page ); glay->addWidget( label, 0, 0, AlignRight|AlignVCenter ); - mFileLabel = new QLabel( page ); + mFileLabel = new TQLabel( page ); glay->addWidget( mFileLabel, 0, 1 ); - label = new QLabel( i18n("Document title:" ), page ); + label = new TQLabel( i18n("Document title:" ), page ); glay->addWidget( label, 1, 0, AlignRight|AlignVCenter ); - mTitleLabel = new QLabel( page ); + mTitleLabel = new TQLabel( page ); glay->addWidget( mTitleLabel, 1, 1 ); - label = new QLabel( i18n("Publication date:" ), page ); + label = new TQLabel( i18n("Publication date:" ), page ); glay->addWidget( label, 2, 0, AlignRight|AlignVCenter ); - mDateLabel = new QLabel( page ); + mDateLabel = new TQLabel( page ); glay->addWidget( mDateLabel, 2, 1 ); topLayout->addStretch(1); @@ -81,17 +81,17 @@ namespace { * For PS files, there is no such standard and dates appear * in any format they desire. */ - QString parseDate( const QString& dateStr ) { + TQString parseDate( const TQString& dateStr ) { kdDebug( 4500 ) << "parseDate( \"" << dateStr << "\" )" << endl; - QRegExp exp( "\\((?:D:)?" + TQRegExp exp( "\\((?:D:)?" "(\\d\\d\\d\\d)" "(\\d\\d)?(\\d\\d)?(\\d\\d)?.*" "(\\d\\d)?(\\d\\d)?.*" "(?:(\\+|\\-)(\\d\\d)\'?(\\d\\d)\'?)?" "\\)" ); if ( exp.exactMatch( dateStr ) ) { - QStringList list = exp.capturedTexts(); - QStringList::iterator iter = list.begin(); + TQStringList list = exp.capturedTexts(); + TQStringList::iterator iter = list.begin(); ++iter; // whole string! #undef GET #define GET( variable, def ) \ @@ -108,18 +108,18 @@ namespace { GET( sec, 0 ) #undef GET // FIXME: this ignores the timezone - QDate date( year, month, day ); - QTime time( hour, min, sec ); + TQDate date( year, month, day ); + TQTime time( hour, min, sec ); KLocale locale( "kghostview" ); - return locale.formatDateTime( QDateTime( date, time ) ); + return locale.formatDateTime( TQDateTime( date, time ) ); } kdDebug( 4500 ) << "parseDate failed." << endl; return dateStr; } } -void InfoDialog::setup( const QString &fileName, const QString &documentTitle, - const QString &publicationDate ) +void InfoDialog::setup( const TQString &fileName, const TQString &documentTitle, + const TQString &publicationDate ) { mFileLabel->setText( fileName ); mTitleLabel->setText( documentTitle ); |