Michele Calgaro 10 years ago
commit 0ffe0dfb29

@ -56,7 +56,7 @@ AdaProjectPart::AdaProjectPart(TQObject *parent, const char *name, const TQStrin
action = new TDEAction( i18n("&Build Project"), "make_tdevelop", Key_F8,
this, TQT_SLOT(slotBuild()),
actionCollection(), "build_build" );
action = new TDEAction( i18n("Execute Program"), "exec", 0,
action = new TDEAction( i18n("Execute Program"), "application-x-executable", 0,
this, TQT_SLOT(slotExecute()),
actionCollection(), "build_execute" );

@ -222,7 +222,7 @@ void AutoDetailsView::initActions()
buildTargetAction->setEnabled( false );
TQToolTip::add( m_button5, tr2i18n( "Execute Target..."));
executeTargetAction = new AutoToolsAction( i18n( "Execute Target..." ), "exec", 0,
executeTargetAction = new AutoToolsAction( i18n( "Execute Target..." ), "application-x-executable", 0,
TQT_TQOBJECT(this), TQT_SLOT( slotExecuteTarget() ), actions,
"execute target" );
executeTargetAction->setWhatsThis(i18n("<b>Execute target</b><p>Executes the target "

@ -102,7 +102,7 @@ TargetItem::TargetItem( TQListView *lv, bool group, const TQString &text )
: ProjectItem( Target, lv, text )
{
sources.setAutoDelete( true );
setPixmap( 0, group ? SmallIcon( "tar" ) : SmallIcon( "binary" ) );
setPixmap( 0, group ? SmallIcon( "application-x-tar" ) : SmallIcon( "application-octet-stream" ) );
}
@ -115,7 +115,7 @@ FileItem::FileItem( TQListView *lv, const TQString &text, bool set_is_subst )
{
if(!is_subst)
{
setPixmap( 0, SmallIcon( "document" ) );
setPixmap( 0, SmallIcon( "text-x-generic" ) );
}
else
{

@ -213,7 +213,7 @@ AutoProjectPart::AutoProjectPart(TQObject *parent, const char *name, const TQStr
TQDomDocument &dom = *projectDom();
if (!DomUtil::readBoolEntry(dom, "/kdevautoproject/run/disable_default")) {
//ok we handle the execute in this kpart
action = new TDEAction( i18n("Execute Program"), "exec", SHIFT+Key_F9,
action = new TDEAction( i18n("Execute Program"), "application-x-executable", SHIFT+Key_F9,
this, TQT_SLOT(slotExecute()),
actionCollection(), "build_execute" );
action->setToolTip(i18n("Execute program"));

@ -91,7 +91,7 @@ GenericName[uz@cyrillic]=Automake лойиҳаси
GenericName[zh_CN]=Automake 工程
GenericName[zh_TW]=Automake 專案
X-TDE-ServiceTypes=TDevelop/Project
Icon=make
Icon=text-x-text-x-makefile
X-TDE-Library=libkdevautoproject
X-TDevelop-Version=5
X-TDevelop-Args=

@ -86,7 +86,7 @@ GenericName[tr]=TDE Automake Projesi
GenericName[zh_CN]=TDE Automake 工程
GenericName[zh_TW]=TDE Automake 專案
X-TDE-ServiceTypes=TDevelop/Project
Icon=make
Icon=text-x-text-x-makefile
X-TDE-Library=libkdevautoproject
X-TDevelop-Version=5
X-TDevelop-Args=kde

@ -160,7 +160,7 @@ void KFileDnDDetailView::startDrag(){
}
TQPixmap pixmap;
if( urls.count() > 1 ){
pixmap = DesktopIcon( "tdemultiple", 16 );
pixmap = DesktopIcon( "application-vnd.tde.tdemultiple", 16 );
}
if( pixmap.isNull() )
pixmap = currentFileItem()->pixmap( 16 );

@ -149,7 +149,7 @@ TQDragObject* KFileDnDIconView::dragObject() {
}
TQPixmap pixmap;
if( urls.count() > 1 )
pixmap = DesktopIcon( "tdemultiple", iconSize() );
pixmap = DesktopIcon( "application-vnd.tde.tdemultiple", iconSize() );
if( pixmap.isNull() )
pixmap = currentFileItem()->pixmap( iconSize() );
TQPoint hotspot;

@ -137,7 +137,7 @@ CustomProjectPart::CustomProjectPart( TQObject *parent, const char *name, const
"Environment variables and make arguments can be specified "
"in the project settings dialog, <b>Build Options</b> tab." ) );
action = new TDEAction( i18n( "Execute Program" ), "exec", 0,
action = new TDEAction( i18n( "Execute Program" ), "application-x-executable", 0,
this, TQT_SLOT( slotExecute() ),
actionCollection(), "build_execute" );
action->setToolTip( i18n( "Execute program" ) );
@ -193,14 +193,14 @@ CustomProjectPart::~CustomProjectPart()
void CustomProjectPart::projectConfigWidget( KDialogBase *dlg )
{
TQVBox *vbox;
vbox = dlg->addVBoxPage( i18n( "Custom Manager" ), i18n( "Custom Manager" ), BarIcon( "make", TDEIcon::SizeMedium ) );
vbox = dlg->addVBoxPage( i18n( "Custom Manager" ), i18n( "Custom Manager" ), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ) );
CustomManagerWidget *w0 = new CustomManagerWidget( this, vbox );
connect( dlg, TQT_SIGNAL( okClicked() ), w0, TQT_SLOT( accept() ) );
vbox = dlg->addVBoxPage( i18n( "Run Options" ), i18n( "Run Options" ), BarIcon( "make", TDEIcon::SizeMedium ) );
vbox = dlg->addVBoxPage( i18n( "Run Options" ), i18n( "Run Options" ), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ) );
RunOptionsWidget *w1 = new RunOptionsWidget( *projectDom(), "/kdevcustomproject", buildDirectory(), vbox );
connect( dlg, TQT_SIGNAL( okClicked() ), w1, TQT_SLOT( accept() ) );
vbox = dlg->addVBoxPage( i18n( "Build Options" ), i18n( "Build Options" ), BarIcon( "make", TDEIcon::SizeMedium ) );
vbox = dlg->addVBoxPage( i18n( "Build Options" ), i18n( "Build Options" ), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ) );
TQTabWidget *buildtab = new TQTabWidget( vbox );
CustomBuildOptionsWidget *w2 = new CustomBuildOptionsWidget( *projectDom(), buildtab );

@ -65,7 +65,7 @@ PascalProjectPart::PascalProjectPart(TQObject *parent, const char *name, const T
action->setToolTip(i18n("Build project"));
action->setWhatsThis(i18n("<b>Build project</b><p>Runs the compiler on a main source file of the project. "
"The compiler and the main source file can be set in project settings, <b>Pascal Compiler</b> tab."));
action = new TDEAction( i18n("Execute Program"), "exec", 0,
action = new TDEAction( i18n("Execute Program"), "application-x-executable", 0,
this, TQT_SLOT(slotExecute()),
actionCollection(), "build_execute" );
action->setToolTip(i18n("Execute program"));
@ -400,7 +400,7 @@ void PascalProjectPart::projectConfigWidget( KDialogBase * dlg )
connect( dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()) );
connect( dlg, TQT_SIGNAL(okClicked()), this, TQT_SLOT(loadProjectConfig()) );
vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "make", TDEIcon::SizeMedium ));
vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ));
RunOptionsWidget *w3 = new RunOptionsWidget(*projectDom(), "/kdevpascalproject", buildDirectory(), vbox);
connect( dlg, TQT_SIGNAL(okClicked()), w3, TQT_SLOT(accept()) );

@ -50,7 +50,7 @@ GroupItem::GroupItem( TQListView *lv, GroupType type, const TQString &text, QMak
this->owner = spitem;
groupType = type;
// files.setAutoDelete( true );
setPixmap( 0, SmallIcon( "tar" ) );
setPixmap( 0, SmallIcon( "application-x-tar" ) );
}
GroupItem::GroupType GroupItem::groupTypeForExtension( const TQString &ext )
@ -298,7 +298,7 @@ FileItem::FileItem( TQListView *lv, const TQString &text )
// if excluded is set the file is excluded in the subproject/project.
// by default excluded is set to false, thus file is included
// excluded = exclude;
setPixmap( 0, SmallIcon( "document" ) );
setPixmap( 0, SmallIcon( "text-x-generic" ) );
}

@ -140,7 +140,7 @@ TrollProjectPart::TrollProjectPart(TQObject *parent, const char *name, const TQS
"project directory.<br>Environment variables and make arguments can be specified "
"in the project settings dialog, <b>Make Options</b> tab."));
action = new TDEAction( i18n("Execute Main Program"), "exec", SHIFT+Key_F9,
action = new TDEAction( i18n("Execute Main Program"), "application-x-executable", SHIFT+Key_F9,
this, TQT_SLOT(slotBuildAndExecuteProject()),
actionCollection(), "build_execute_project" );
action->setToolTip(i18n("Execute main program"));
@ -191,7 +191,7 @@ TrollProjectPart::TrollProjectPart(TQObject *parent, const char *name, const TQS
"Environment variables and make arguments can be specified "
"in the project settings dialog, <b>Make Options</b> tab."));
action = new TDEAction( i18n("Execute Subproject"), "exec", 0,
action = new TDEAction( i18n("Execute Subproject"), "application-x-executable", 0,
this, TQT_SLOT(slotBuildAndExecuteTarget()),
actionCollection(), "build_execute_target" );
action->setToolTip(i18n("Execute subproject"));
@ -270,13 +270,13 @@ TQString TrollProjectPart::makeEnvironment()
void TrollProjectPart::projectConfigWidget(KDialogBase *dlg)
{
TQVBox *vbox;
vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "make", TDEIcon::SizeMedium ));
vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ));
RunOptionsWidget *optdlg = new RunOptionsWidget(*projectDom(), "/kdevtrollproject", buildDirectory(), vbox);
vbox = dlg->addVBoxPage(i18n("Make Options"), i18n("Make Options"), BarIcon( "make", TDEIcon::SizeMedium ));
vbox = dlg->addVBoxPage(i18n("Make Options"), i18n("Make Options"), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ));
MakeOptionsWidget *w4 = new MakeOptionsWidget(*projectDom(), "/kdevtrollproject", vbox);
vbox = dlg->addVBoxPage(i18n("TQMake Manager"), i18n("TQMake Manager"), BarIcon( "make", TDEIcon::SizeMedium ));
vbox = dlg->addVBoxPage(i18n("TQMake Manager"), i18n("TQMake Manager"), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ));
QMakeOptionsWidget *qm = new QMakeOptionsWidget( projectDirectory(), *projectDom(), "/kdevtrollproject", vbox);

@ -137,7 +137,7 @@ TrollProjectWidget::TrollProjectWidget( TrollProjectPart *part )
// run
executeProjectButton = new TQToolButton ( projectTools, "Run button" );
executeProjectButton->setPixmap ( SmallIcon ( "exec" ) );
executeProjectButton->setPixmap ( SmallIcon ( "application-x-executable" ) );
executeProjectButton->setSizePolicy ( TQSizePolicy ( ( TQSizePolicy::SizeType ) 0, ( TQSizePolicy::SizeType ) 0, 0, 0, executeProjectButton->sizePolicy().hasHeightForWidth() ) );
executeProjectButton->setEnabled ( true );
TQToolTip::add( executeProjectButton, i18n( "Execute main program" ) );
@ -255,7 +255,7 @@ TrollProjectWidget::TrollProjectWidget( TrollProjectPart *part )
// run
executeTargetButton = new TQToolButton ( fileTools, "Run sp button" );
executeTargetButton->setPixmap ( SmallIcon ( "exec" ) );
executeTargetButton->setPixmap ( SmallIcon ( "application-x-executable" ) );
executeTargetButton->setSizePolicy ( TQSizePolicy ( ( TQSizePolicy::SizeType ) 0, ( TQSizePolicy::SizeType ) 0, 0, 0, executeTargetButton->sizePolicy().hasHeightForWidth() ) );
executeTargetButton->setEnabled ( true );
TQToolTip::add( executeTargetButton, i18n( "Execute subproject" ) );

@ -30,7 +30,7 @@ VisualBoyAdvancePart::VisualBoyAdvancePart(TQObject *parent, const char *name, c
setXMLFile("kdevpart_visualboyadvance.rc");
TDEAction *action;
action = new TDEAction( i18n("Execute Program"), "exec", Key_F9,
action = new TDEAction( i18n("Execute Program"), "application-x-executable", Key_F9,
this, TQT_SLOT(slotExecute()),
actionCollection(), "build_execute" );
@ -68,7 +68,7 @@ void VisualBoyAdvancePart::slotExecute(){
void VisualBoyAdvancePart::projectConfigWidget(KDialogBase *dlg){
TQVBox *vbox;
vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "make", TDEIcon::SizeMedium ));
vbox = dlg->addVBoxPage(i18n("Run Options"), i18n("Run Options"), BarIcon( "text-x-makefile", TDEIcon::SizeMedium ));
VBAConfigWidget* w = new VBAConfigWidget(this,vbox);
connect( dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()) );
}

@ -58,7 +58,7 @@ AdaSupportPart::AdaSupportPart (TQObject *parent, const char *name, const TQStri
d->problemReporter = new ProblemReporter (this);
// connect (core (), TQT_SIGNAL (configWidget (KDialogBase*)),
// d->problemReporter, TQT_SLOT (configWidget (KDialogBase*)));
d->problemReporter->setIcon( SmallIcon("info") );
d->problemReporter->setIcon( SmallIcon("application-vnd.tde.info") );
mainWindow( )->embedOutputView( d->problemReporter, i18n("Problems"), i18n("Problem reporter"));
TQWhatsThis::add(d->problemReporter, i18n("<b>Problem reporter</b><p>This window shows various \"problems\" in your project. "
"It displays errors reported by a language parser."));

@ -253,7 +253,7 @@ void ProblemReporter::configure()
void ProblemReporter::configWidget( KDialogBase* dlg )
{
kdDebug() << "ProblemReporter::configWidget()" << endl;
TQVBox *vbox = dlg->addVBoxPage(i18n("Ada Parsing"), i18n("Ada Parsing"), BarIcon( "source", TDEIcon::SizeMedium ));
TQVBox *vbox = dlg->addVBoxPage(i18n("Ada Parsing"), i18n("Ada Parsing"), BarIcon( "text-x-src", TDEIcon::SizeMedium ));
ConfigureProblemReporter* w = new ConfigureProblemReporter( vbox );
connect(dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()));
connect(dlg, TQT_SIGNAL(okClicked()), this, TQT_SLOT(configure()));

@ -43,7 +43,7 @@ BashSupportPart::BashSupportPart(TQObject *parent, const char *name, const TQStr
setXMLFile("kdevbashsupport.rc");
TDEAction *action;
action = new TDEAction( i18n("&Run"), "exec",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" );
action = new TDEAction( i18n("&Run"), "application-x-executable",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" );
action->setToolTip(i18n("Run"));
action->setWhatsThis(i18n("<b>Run</b><p>Starts an application."));

@ -28,7 +28,7 @@ static const KDevPluginInfo data("kdev%{APPNAMELC}");
setXMLFile("kdevlang_%{APPNAMELC}.rc");
m_build = new TDEAction( i18n("&Run"), "exec",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" );
m_build = new TDEAction( i18n("&Run"), "application-x-executable",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" );
kdDebug() << "Creating %{APPNAMELC} Part" << endl;

@ -1,6 +1,6 @@
[Desktop Entry]
Exec=tdecmshell %{APPNAMELC}
Icon=misc
Icon=application-vnd.tde.misc
Type=Application
X-TDE-ModuleType=Library

@ -449,7 +449,7 @@ void CppSupportPart::configWidget( KDialogBase *dlg )
connect( dlg, TQT_SIGNAL( okClicked() ), w, TQT_SLOT( storeConfig() ) );
vbox = dlg->addVBoxPage(i18n("C++ Parsing"), i18n("C++ Parsing"),
BarIcon( "source_cpp", TDEIcon::SizeMedium) );
BarIcon( "text-x-c++src", TDEIcon::SizeMedium) );
ConfigureProblemReporter* ww = new ConfigureProblemReporter( vbox );
ww->setPart( this );
connect(dlg, TQT_SIGNAL(okClicked()), ww, TQT_SLOT(accept()));
@ -581,7 +581,7 @@ void CppSupportPart::embedProblemReporter( bool force )
if ( force || m_backgroundParserConfig->useProblemReporter() )
{
m_problemReporter = new ProblemReporter( this, 0, "problemReporterWidget" );
m_problemReporter->setIcon( SmallIcon( "info" ) );
m_problemReporter->setIcon( SmallIcon( "application-vnd.tde.info" ) );
m_problemReporter->setCaption( i18n( "Problem Reporter" ) );
mainWindow( ) ->embedOutputView( m_problemReporter, i18n( "Problems" ), i18n( "Problem reporter" ) );
}

@ -291,7 +291,7 @@ DebuggerPart::DebuggerPart( TQObject *parent, const char *name, const TQStringLi
"<b>Libraries</b>"));
action = new TDEAction(i18n("Examine Core File..."), "core", 0,
action = new TDEAction(i18n("Examine Core File..."), "application-x-core", 0,
this, TQT_SLOT(slotExamineCore()),
actionCollection(), "debug_core");
action->setToolTip( i18n("Examine core file") );

@ -78,7 +78,7 @@ GenericName[tg]=Интеграл ёфтани созгузор
GenericName[tr]=Hata Ayıklayıcı Önucu
GenericName[zh_CN]=调试器前端
GenericName[zh_TW]=除錯器前端
Icon=debugger
Icon=application-x-debugger
X-TDE-ServiceTypes=TDevelop/Plugin
X-TDE-Library=libkdevdebugger
X-TDevelop-Version=5

@ -79,7 +79,7 @@ GenericName[tr]=C++ Desteği
GenericName[zh_CN]=C++ 支持
GenericName[zh_TW]=C++ 支援
X-TDE-ServiceTypes=TDevelop/LanguageSupport
Icon=source_cpp
Icon=text-x-text-x-csrcpp
X-TDE-Library=libkdevcppsupport
X-TDevelop-Version=5
X-TDevelop-Language=C++

@ -78,7 +78,7 @@ GenericName[tr]=C Desteği
GenericName[zh_CN]=C 支持
GenericName[zh_TW]=C 支援
X-TDE-ServiceTypes=TDevelop/LanguageSupport
Icon=source_cpp
Icon=text-x-text-x-csrcpp
X-TDE-Library=libkdevcppsupport
X-TDevelop-Version=5
X-TDevelop-Language=C

@ -62,17 +62,17 @@ CSharpSupportPart::CSharpSupportPart(TQObject *parent, const char *name, const T
TDEAction *action;
action = new TDEAction( i18n("Execute Main Program"), "exec", 0,
action = new TDEAction( i18n("Execute Main Program"), "application-x-executable", 0,
this, TQT_SLOT(slotExecute()),
actionCollection(), "build_exec" );
action->setToolTip( i18n("Runs the CSharp program") );
action = new TDEAction( i18n("Execute String..."), "exec", 0,
action = new TDEAction( i18n("Execute String..."), "application-x-executable", 0,
this, TQT_SLOT(slotExecuteString()),
actionCollection(), "build_execstring" );
action->setToolTip( i18n("Executes a string as CSharp code") );
action = new TDEAction( i18n("Start CSharp Interpreter"), "exec", 0,
action = new TDEAction( i18n("Start CSharp Interpreter"), "application-x-executable", 0,
this, TQT_SLOT(slotStartInterpreter()),
actionCollection(), "build_runinterpreter" );
action->setToolTip( i18n("Starts the CSharp interpreter without a program") );

@ -147,7 +147,7 @@ JavaSupportPart::JavaSupportPart(TQObject *parent, const char *name, const TQStr
this, TQT_SLOT(partRemoved(KParts::Part*)));
m_problemReporter = new ProblemReporter( this, 0, "problemReporterWidget" );
m_problemReporter->setIcon( SmallIcon("info") );
m_problemReporter->setIcon( SmallIcon("application-vnd.tde.info") );
mainWindow( )->embedOutputView( m_problemReporter, i18n("Problems"), i18n("Problem reporter"));
connect( core(), TQT_SIGNAL(configWidget(KDialogBase*)),

@ -53,7 +53,7 @@ KJSProblems::KJSProblems(kjsSupportPart *part, TQWidget *parent, const char *nam
addColumn ("File");
addColumn ("Line #");
addColumn ("Problem:");
setIcon( SmallIcon("info") );
setIcon( SmallIcon("application-vnd.tde.info") );
}
@ -65,7 +65,7 @@ KJSProblems::~KJSProblems()
void KJSProblems::clearItems()
{
clear();
setIcon( SmallIcon("info") );
setIcon( SmallIcon("application-vnd.tde.info") );
}
void KJSProblems::addLine(const TQString &file, int lineNo, const TQString &message)

@ -69,7 +69,7 @@ kjsSupportPart::kjsSupportPart(TQObject *parent, const char *name, const TQStrin
setXMLFile("kdevkjssupport.rc");
m_build = new TDEAction( i18n("&Run"), "exec",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" );
m_build = new TDEAction( i18n("&Run"), "application-x-executable",Key_F9,this, TQT_SLOT(slotRun()),actionCollection(), "build_execute" );
m_build->setStatusText( i18n("Test the active script.") );
kdDebug() << "Creating kjssupport Part" << endl;

@ -62,17 +62,17 @@ PerlSupportPart::PerlSupportPart(TQObject *parent, const char *name, const TQStr
TDEAction *action;
action = new TDEAction( i18n("Execute Main Program"), "exec", 0,
action = new TDEAction( i18n("Execute Main Program"), "application-x-executable", 0,
this, TQT_SLOT(slotExecute()),
actionCollection(), "build_exec" );
action->setToolTip( i18n("Runs the Perl program") );
action = new TDEAction( i18n("Execute String..."), "exec", 0,
action = new TDEAction( i18n("Execute String..."), "application-x-executable", 0,
this, TQT_SLOT(slotExecuteString()),
actionCollection(), "build_execstring" );
action->setToolTip( i18n("Executes a string as Perl code") );
action = new TDEAction( i18n("Start Perl Interpreter"), "exec", 0,
action = new TDEAction( i18n("Start Perl Interpreter"), "application-x-executable", 0,
this, TQT_SLOT(slotStartInterpreter()),
actionCollection(), "build_runinterpreter" );
action->setToolTip( i18n("Starts the Perl interpreter without a program") );

@ -88,7 +88,7 @@ PHPSupportPart::PHPSupportPart(TQObject *parent, const char *name, const TQStrin
TDEAction *action;
action = new TDEAction( i18n("&Run"), "exec",Key_F9,
action = new TDEAction( i18n("&Run"), "application-x-executable",Key_F9,
this, TQT_SLOT(slotRun()),
actionCollection(), "build_execute" );
action->setToolTip(i18n("Run"));
@ -101,7 +101,7 @@ PHPSupportPart::PHPSupportPart(TQObject *parent, const char *name, const TQStrin
action->setWhatsThis(i18n("<b>New class</b><p>Runs New Class wizard."));
m_phpErrorView = new PHPErrorView(this, 0, "phpErrorWidget");
m_phpErrorView->setIcon( SmallIcon("info") );
m_phpErrorView->setIcon( SmallIcon("application-vnd.tde.info") );
TQWhatsThis::add(m_phpErrorView, i18n("<b>PHP problems</b><p>This view shows PHP parser warnings, errors, and fatal errors."));
mainWindow()->embedOutputView(m_phpErrorView, i18n("Problems"), i18n("Problems"));
@ -208,7 +208,7 @@ void PHPSupportPart::slotConfigStored() {
}
void PHPSupportPart::projectConfigWidget(KDialogBase *dlg) {
TQVBox *vbox = dlg->addVBoxPage(i18n( "PHP Specific" ), i18n("PHP Settings"), BarIcon( "source", TDEIcon::SizeMedium ));
TQVBox *vbox = dlg->addVBoxPage(i18n( "PHP Specific" ), i18n("PHP Settings"), BarIcon( "text-x-src", TDEIcon::SizeMedium ));
PHPConfigWidget* w = new PHPConfigWidget(configData,vbox, "php config widget");
connect( dlg, TQT_SIGNAL(okClicked()), w, TQT_SLOT(accept()) );
}

@ -60,19 +60,19 @@ PythonSupportPart::PythonSupportPart(TQObject *parent, const char *name, const T
TDEAction *action;
action = new TDEAction( i18n("Execute Program"), "exec", 0,
action = new TDEAction( i18n("Execute Program"), "application-x-executable", 0,
this, TQT_SLOT(slotExecute()),
actionCollection(), "build_exec" );
action->setToolTip( i18n("Execute program") );
action->setWhatsThis(i18n("<b>Execute program</b><p>Runs the Python program."));
action = new TDEAction( i18n("Execute String..."), "exec", 0,
action = new TDEAction( i18n("Execute String..."), "application-x-executable", 0,
this, TQT_SLOT(slotExecuteString()),
actionCollection(), "build_execstring" );
action->setToolTip( i18n("Execute string") );
action->setWhatsThis(i18n("<b>Execute String</b><p>Executes a string as Python code."));
action = new TDEAction( i18n("Start Python Interpreter"), "exec", 0,
action = new TDEAction( i18n("Start Python Interpreter"), "application-x-executable", 0,
this, TQT_SLOT(slotStartInterpreter()),
actionCollection(), "build_runinterpreter" );
action->setToolTip( i18n("Start Python interpreter") );

@ -48,14 +48,14 @@ RubySupportPart::RubySupportPart(TQObject *parent, const char *name, const TQStr
setXMLFile("kdevrubysupport.rc");
TDEAction *action;
action = new TDEAction( i18n("&Run"), "exec", SHIFT + Key_F9,
action = new TDEAction( i18n("&Run"), "application-x-executable", SHIFT + Key_F9,
this, TQT_SLOT(slotRun()),
actionCollection(), "build_execute" );
action->setToolTip(i18n("Run"));
action->setWhatsThis(i18n("<b>Run</b><p>Starts an application."));
action->setIcon("ruby_run.png");
action = new TDEAction( i18n("Run Test Under Cursor"), "exec", ALT + Key_F9,
action = new TDEAction( i18n("Run Test Under Cursor"), "application-x-executable", ALT + Key_F9,
this, TQT_SLOT(slotRunTestUnderCursor()),
actionCollection(), "build_execute_test_function" );
action->setToolTip(i18n("Run Test Under Cursor"));

@ -40,7 +40,7 @@ SQLSupportPart::SQLSupportPart( TQObject *parent, const char *name, const TQStri
setXMLFile( "kdevsqlsupport.rc" );
TDEAction *action;
action = new TDEAction( i18n( "&Run" ), "exec", Key_F9, this, TQT_SLOT( slotRun() ), actionCollection(), "build_execute" );
action = new TDEAction( i18n( "&Run" ), "application-x-executable", Key_F9, this, TQT_SLOT( slotRun() ), actionCollection(), "build_execute" );
action->setToolTip(i18n("Run"));
action->setWhatsThis(i18n("<b>Run</b><p>Executes a SQL script."));
@ -132,7 +132,7 @@ void SQLSupportPart::loadConfig()
void SQLSupportPart::projectConfigWidget( KDialogBase *dlg )
{
TQVBox *vbox = dlg->addVBoxPage( TQString( "SQL" ), i18n( "Specify Your Database Connections" ), BarIcon("source", TDEIcon::SizeMedium) );
TQVBox *vbox = dlg->addVBoxPage( TQString( "SQL" ), i18n( "Specify Your Database Connections" ), BarIcon("text-x-src", TDEIcon::SizeMedium) );
SqlConfigWidget *w = new SqlConfigWidget( (TQWidget*)vbox, "SQL config widget" );
w->setProjectDom( projectDom() );
w->loadConfig();

@ -36,7 +36,7 @@ Comment[tr]=Fortran Kaynak Dosyası
Comment[zh_CN]=Fortran 源文件
Comment[zh_TW]=Fortran 程式源碼檔
Hidden=false
Icon=source_f
Icon=text-x-text-x-fortran
MimeType=text/x-fortran
Patterns=*.f;*.F;*.f77;*.f90;*.f95;*.for;*.ftn;*.fpp
Type=MimeType

@ -42,7 +42,7 @@ AbbrevConfigWidget::AbbrevConfigWidget(AbbrevPart *part, TQWidget *parent, const
templ->suffixes,
templ->code,
templ->code );
it->setPixmap( 0, SmallIcon("template_source"));
it->setPixmap( 0, SmallIcon("application-vnd.tde.template_source"));
}
checkWordCompletion->setChecked( part->autoWordCompletionEnabled() );
@ -95,7 +95,7 @@ void AbbrevConfigWidget::codeChanged()
if( item ){
item->setText( 3, editCode->text() );
if (item->text(3) == item->text(4))
item->setPixmap( 0, SmallIcon("template_source") );
item->setPixmap( 0, SmallIcon("application-vnd.tde.template_source") );
else
item->setPixmap( 0, SmallIcon("document-save") );
}

@ -76,7 +76,7 @@ GenericName[tr]=Kısaltma Genişlemesi
GenericName[zh_CN]=缩写扩展
GenericName[zh_TW]=縮寫擴展
X-TDE-ServiceTypes=TDevelop/Plugin
Icon=fontsizeup
Icon=font-x-genericsizeup
X-TDE-Library=libkdevabbrev
X-TDevelop-Version=5
X-TDevelop-Scope=Global

@ -211,7 +211,7 @@ void BookmarksWidget::createURL( EditorData * data )
{
TQListViewItem * file = new BookmarkItem( this, data->url );
file->setOpen( true );
file->setPixmap( 0, SmallIcon( "document" ) );
file->setPixmap( 0, SmallIcon( "text-x-generic" ) );
TQValueListIterator< TQPair<int,TQString> > it = data->marks.begin();
while ( it != data->marks.end() )

@ -76,7 +76,7 @@ void DocumentationItem::init( )
icon = "contents";
break;
default:
icon = "document";
icon = "text-x-generic";
}
setPixmap(0, SmallIcon(icon));

@ -219,7 +219,7 @@ InputString::InputString(const TQString & label,
if (m == StringFile || m == StringDir) {
br = new TQPushButton(this);
br->setPixmap(SmallIcon(m==StringFile? "document" : "folder"));
br->setPixmap(SmallIcon(m==StringFile? "text-x-generic" : "folder"));
TQToolTip::add(br, m==StringFile? i18n("Browse to a file") : i18n("Browse to a folder"));
layout->addWidget(br, 0, 2);
}
@ -362,7 +362,7 @@ InputStrList::InputStrList(const TQString & label,
if (lm != ListString) {
if (lm & ListFile) {
brFile = new TQPushButton(dw);
brFile->setPixmap(SmallIcon("document"));
brFile->setPixmap(SmallIcon("text-x-generic"));
TQToolTip::add(brFile, i18n("Browse to a file"));
boxlayout->addWidget(brFile);
}

@ -145,7 +145,7 @@ private:
FileGroupsFileItem::FileGroupsFileItem(TQListViewItem *parent, const TQString &fileName)
: TQListViewItem(parent), fullname(fileName)
{
setPixmap(0, SmallIcon("document"));
setPixmap(0, SmallIcon("text-x-generic"));
TQFileInfo fi(fileName);
setText(0, fi.fileName());
setText(1, "./" + fi.dirPath());

@ -76,7 +76,7 @@ GenericName[tg]=Тирезаи хориҷ кардани гузориш
GenericName[tr]=Uygulama Çıktı Görünümü
GenericName[zh_CN]=应用程序输出查看器
GenericName[zh_TW]=應用程式輸出檢視
Icon=exec
Icon=application-x-executable
X-TDE-ServiceTypes=TDevelop/AppFrontend
X-TDE-Library=libkdevappview
X-TDevelop-Version=5

@ -40,7 +40,7 @@ MakeViewPart::MakeViewPart(TQObject *parent, const char *name, const TQStringLis
m_dcop = new KDevMakeFrontendIface(this);
m_widget = new MakeWidget(this);
m_widget->setIcon( SmallIcon("exec") );
m_widget->setIcon( SmallIcon("application-x-executable") );
m_widget->setCaption(i18n("Messages Output"));
TQWhatsThis::add(m_widget, i18n("<b>Messages output</b><p>"
"The messages window shows the output of the compiler and "

@ -61,7 +61,7 @@ Comment[sv]=Skriptinsticksprogrammet erbjuder KScript-baserad styrning av progra
Comment[tr]=Betik Yazma eklentisi TDevelop uygulamasına KScript tabanlı betik yazmayı sunar.
Comment[zh_CN]=脚本插件可为 TDevelop 应用程序提供基于 KScript 的脚本。
Comment[zh_TW]=文稿外掛程式提供 TDevelop 應用程式一個 KScript 基礎的文稿機制。
Icon=shellscript
Icon=text-x-text-x-script
X-TDE-ServiceTypes=TDevelop/Plugin
X-TDevelop-Plugin-Version=1

@ -35,7 +35,7 @@ Comment[sv]=Funktion för integrering av Subversion i projekt
Comment[tr]=Subversion Proje Bütünleştirme Aracı
Comment[zh_CN]=Subversion 工程集成功能
Comment[zh_TW]=Subversion 專案整合工具
Icon=misc
Icon=application-vnd.tde.misc
Exec=blubb
X-TDE-ServiceTypes=TDevelop/VCSIntegrator
X-TDE-Library=libsubversionintegrator

@ -27,7 +27,7 @@ GenericName[pt_BR]=Subversão
GenericName[ru]=Интеграция Subversion
GenericName[ta]=துணை பதிப்பு
GenericName[tg]=Зер-ривоят
Icon=misc
Icon=application-vnd.tde.misc
X-TDE-ServiceTypes=TDevelop/VersionControl
X-TDE-Library=libkdevsubversion
X-TDevelop-Version=5

Loading…
Cancel
Save