|
|
|
@ -170,9 +170,9 @@ void ThemePage::load( bool useDefaults )
|
|
|
|
|
currentTheme = "system";
|
|
|
|
|
|
|
|
|
|
// Find the theme in the listview and select it
|
|
|
|
|
TQListViewItem *item = listview->findItem( currentTheme, DirColumn );
|
|
|
|
|
TQListViewItem *item = listview->tqfindItem( currentTheme, DirColumn );
|
|
|
|
|
if( !item )
|
|
|
|
|
item = listview->findItem( "system", DirColumn );
|
|
|
|
|
item = listview->tqfindItem( "system", DirColumn );
|
|
|
|
|
selectedTheme = item->text( DirColumn );
|
|
|
|
|
listview->setSelected( item, true );
|
|
|
|
|
listview->ensureItemVisible( item );
|
|
|
|
@ -260,7 +260,7 @@ void ThemePage::removeClicked()
|
|
|
|
|
KIO::del( u );
|
|
|
|
|
|
|
|
|
|
// Remove the theme from the listview and from the themeinfo dict
|
|
|
|
|
delete listview->findItem( selectedTheme, DirColumn );
|
|
|
|
|
delete listview->tqfindItem( selectedTheme, DirColumn );
|
|
|
|
|
themeInfo.remove( selectedTheme );
|
|
|
|
|
listview->setSelected( listview->currentItem(), true );
|
|
|
|
|
|
|
|
|
@ -371,7 +371,7 @@ void ThemePage::insertTheme( const TQString &path )
|
|
|
|
|
info->writable = true;
|
|
|
|
|
|
|
|
|
|
// If an item with the same name already exists, remove it
|
|
|
|
|
delete listview->findItem( dirName, DirColumn );
|
|
|
|
|
delete listview->tqfindItem( dirName, DirColumn );
|
|
|
|
|
|
|
|
|
|
// Create the listview item and insert it into the list.
|
|
|
|
|
KListViewItem *item = new KListViewItem( listview, name, desc, /*hidden*/ dirName );
|
|
|
|
@ -471,7 +471,7 @@ void ThemePage::insertThemes()
|
|
|
|
|
// in the list. Xcursor will use the first theme it finds in that
|
|
|
|
|
// case, and since we use the same search order that should also be
|
|
|
|
|
// the theme we end up adding to the list.
|
|
|
|
|
if ( listview->findItem( *it, DirColumn ) )
|
|
|
|
|
if ( listview->tqfindItem( *it, DirColumn ) )
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
const TQString path = dir.path() + '/' + *it;
|
|
|
|
@ -621,7 +621,7 @@ TQPixmap ThemePage::createIcon( const TQString &theme, const TQString &sample )
|
|
|
|
|
|
|
|
|
|
// Scale down the image if we need to
|
|
|
|
|
if ( image.width() > iconSize || image.height() > iconSize )
|
|
|
|
|
image = image.smoothScale( iconSize, iconSize, TQImage::ScaleMin );
|
|
|
|
|
image = image.smoothScale( iconSize, iconSize, TQ_ScaleMin );
|
|
|
|
|
|
|
|
|
|
pix.convertFromImage( image );
|
|
|
|
|
XcursorImageDestroy( xcur );
|
|
|
|
|