summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-06-26 12:36:16 (UTC)
committer llornkcor <llornkcor>2002-06-26 12:36:16 (UTC)
commit4b0e72bed1ead4e3c7af2209a11f34aa9209653c (patch) (side-by-side diff)
tree2226ec05b90e27487504f38cb385b4b22816fb33
parentb72d90431bf1bf3235213612daad275836bcbb9f (diff)
downloadopie-4b0e72bed1ead4e3c7af2209a11f34aa9209653c.zip
opie-4b0e72bed1ead4e3c7af2209a11f34aa9209653c.tar.gz
opie-4b0e72bed1ead4e3c7af2209a11f34aa9209653c.tar.bz2
fixed font dialog not showing maximized
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/fontDialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/apps/textedit/fontDialog.cpp b/core/apps/textedit/fontDialog.cpp
index 681e8a6..5cdf538 100644
--- a/core/apps/textedit/fontDialog.cpp
+++ b/core/apps/textedit/fontDialog.cpp
@@ -49,49 +49,50 @@ FontDialog::FontDialog( QWidget * parent, const char* name , bool modal, WFlags
familyListBox->setGeometry( QRect( 5, 20, 100, 105 /* 6, 18, 170, 105 */) );
GroupBox2 = new QGroupBox( this, "GroupBox2" );
GroupBox2->setGeometry( QRect( 120, 5, 100, 90/* 0, 138, 170, 90*/ ) );
GroupBox2->setTitle( tr( "Font Style" ) );
styleListBox = new QListBox( GroupBox2, "styleListBox" );
styleListBox->setGeometry( QRect( 5, 20, 90, 60 /*10, 20, 150, 61*/ ) );
sizeListBox = new QListBox( this, "sizeListBox" );
sizeListBox->setGeometry( QRect( 180, 100, 40, 60 /* 192, 24, 40, 108 */) );
MultiLineEdit1 = new QMultiLineEdit( this, "MultiLineEdit1" );
MultiLineEdit1->setGeometry( QRect( 5, 165, 215, 45 /* 6, 234, 222, 55*/ ) );
MultiLineEdit1->setText( tr( "The Quick Brown Fox Jumps Over The Lazy Dog" ) );
MultiLineEdit1->setWordWrap(QMultiLineEdit::WidgetWidth);
connect( familyListBox,SIGNAL( highlighted( const QString &)),SLOT( familyListBoxSlot(const QString &) ));
connect( styleListBox,SIGNAL( highlighted( const QString &)),SLOT( styleListBoxSlot(const QString &) ));
connect( sizeListBox,SIGNAL( highlighted( const QString &)),SLOT( sizeListBoxSlot(const QString &) ));
populateLists();
// MultiLineEdit1
// connect();
-
+// move(5,15);
+ showMaximized();
}
FontDialog::~FontDialog()
{
}
void FontDialog::familyListBoxSlot(const QString & text)
{
int styleInt=styleListBox->currentItem();
int sizeInt=sizeListBox->currentItem();
styleListBox->clear();
sizeListBox->clear();
family= text;
// qDebug(family);
QStringList styles = fdb.styles( family ); // string list of styles of our current font family
styleListBox->insertStringList( styles);
QString dstyle;// = "\t" + style + " (";
QValueList<int> smoothies = fdb.smoothSizes( family, styleListBox->text(0) );
for ( QValueList<int>::Iterator points = smoothies.begin(); points != smoothies.end(); ++points ) {
dstyle = QString::number( *points );
sizeListBox ->insertItem( dstyle.left( dstyle.length() - 1 ));
}
if(styleInt == -1 || styleInt > styleListBox->count() )