author | llornkcor <llornkcor> | 2003-03-26 02:29:46 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2003-03-26 02:29:46 (UTC) |
commit | 114dc0018c29cb899f10bbbe4eb84db1482f9598 (patch) (side-by-side diff) | |
tree | 5f090b026bcb6cafe39b4650530fe0a5cac16bdc | |
parent | 445c957aeddcea7ee0b83657e00987103a6d35b0 (diff) | |
download | opie-114dc0018c29cb899f10bbbe4eb84db1482f9598.zip opie-114dc0018c29cb899f10bbbe4eb84db1482f9598.tar.gz opie-114dc0018c29cb899f10bbbe4eb84db1482f9598.tar.bz2 |
change to UnknownDocument icon
-rw-r--r-- | noncore/net/opieftp/opieftp.cpp | 10 | ||||
-rw-r--r-- | noncore/net/opieftp/opieftp.h | 2 |
2 files changed, 9 insertions, 3 deletions
diff --git a/noncore/net/opieftp/opieftp.cpp b/noncore/net/opieftp/opieftp.cpp index 7c83223..db365ca 100644 --- a/noncore/net/opieftp/opieftp.cpp +++ b/noncore/net/opieftp/opieftp.cpp @@ -85,8 +85,13 @@ OpieFtp::OpieFtp( ) QPEMenuBar *menuBar = new QPEMenuBar(this); // QPEToolBar *menuBar = new QPEToolBar(this); // menuBar->setHorizontalStretchable( TRUE ); + QWMatrix matrix; + QPixmap pix(Resource::loadPixmap( "UnknownDocument" )); + matrix.scale( .4, .4); + unknownXpm = pix.xForm(matrix); + connectionMenu = new QPopupMenu( this ); localMenu = new QPopupMenu( this ); remoteMenu = new QPopupMenu( this ); tabMenu = new QPopupMenu( this ); @@ -687,10 +692,9 @@ void OpieFtp::populateLocalView() else { MimeType mt(fi->filePath()); pm=mt.pixmap(); //sets the correct pixmap for mimetype if(pm.isNull()) - pm = Resource::loadPixmap( "UnknownDocument-14" ); - item->setPixmap( 0,pm); + pm = unknownXpm; } } if( fileL.find("->",0,TRUE) != -1) { // overlay link image @@ -698,10 +702,10 @@ void OpieFtp::populateLocalView() QPixmap lnk = Resource::loadPixmap( "opie/symlink" ); QPainter painter( &pm ); painter.drawPixmap( pm.width()-lnk.width(), pm.height()-lnk.height(), lnk ); pm.setMask( pm.createHeuristicMask( FALSE ) ); - item->setPixmap( 0, pm); } + item->setPixmap( 0,pm); } isDir=FALSE; ++it; } diff --git a/noncore/net/opieftp/opieftp.h b/noncore/net/opieftp/opieftp.h index 109b5f8..9d5d211 100644 --- a/noncore/net/opieftp/opieftp.h +++ b/noncore/net/opieftp/opieftp.h @@ -17,8 +17,9 @@ #include <qmainwindow.h> #include <qdir.h> #include <qstring.h> #include <qpoint.h> +#include <qpixmap.h> class QVBoxLayout; class QHBoxLayout; class QGridLayout; @@ -126,8 +127,9 @@ protected slots: void NewServer(); void serverListClicked( const QString &); protected: + QPixmap unknownXpm; bool fuckeduphack; QStringList remoteDirPathStringList, localDirPathStringList; QString newServerName; void nullifyCallBack(); |