From a4eabeb421eed7bfddcd0a383161155ee41e4eb6 Mon Sep 17 00:00:00 2001
From: Timothy Pearson <kb9vqf@pearsoncomputing.net>
Date: Wed, 22 Oct 2014 01:27:30 -0500
Subject: Bring most mimetypes in line with XDG specifications.  The following
 are not fully verified in source as of this commit due to ubiquity: html,
 empty, info, make, man, misc, source, unknown

---
 umbrello/umbrello/dialogs/classpropdlg.cpp | 16 ++++++++--------
 umbrello/umbrello/listpopupmenu.cpp        | 30 +++++++++++++++---------------
 umbrello/umbrello/uml.cpp                  |  8 ++++----
 3 files changed, 27 insertions(+), 27 deletions(-)

(limited to 'umbrello')

diff --git a/umbrello/umbrello/dialogs/classpropdlg.cpp b/umbrello/umbrello/dialogs/classpropdlg.cpp
index 0a95bfcf..81e1c8c6 100644
--- a/umbrello/umbrello/dialogs/classpropdlg.cpp
+++ b/umbrello/umbrello/dialogs/classpropdlg.cpp
@@ -115,7 +115,7 @@ ClassPropDlg::ClassPropDlg(TQWidget *parent, UMLWidget * w)
 
     //now setup the options page for classes
     if (w->getBaseType() == Uml::wt_Class || w->getBaseType() == Uml::wt_Interface) {
-        TQFrame* newPage = addPage( i18n("Display"), i18n("Display Options"), DesktopIcon("info") );
+        TQFrame* newPage = addPage( i18n("Display"), i18n("Display Options"), DesktopIcon("application-vnd.tde.info") );
         TQHBoxLayout* m_pOptionsLayout = new TQHBoxLayout(newPage);
         ClassifierWidget *cw = static_cast<ClassifierWidget*>(w);
         m_pOptionsPage = new ClassOptionsPage( newPage, cw );
@@ -176,7 +176,7 @@ void ClassPropDlg::setupPages(UMLObject * c, bool assoc) {
     //add extra pages for class
     if (ot == Uml::ot_Class ) {
         //setup attributes page
-        TQFrame* newPage = addPage( i18n("Attributes"), i18n("Attribute Settings"), DesktopIcon("misc") );
+        TQFrame* newPage = addPage( i18n("Attributes"), i18n("Attribute Settings"), DesktopIcon("application-vnd.tde.misc") );
         m_pAttPage = new ClassifierListPage(newPage, (UMLClassifier *)c, m_pDoc, Uml::ot_Attribute);
         TQHBoxLayout * attLayout = new TQHBoxLayout(newPage);
         attLayout -> addWidget(m_pAttPage);
@@ -184,7 +184,7 @@ void ClassPropDlg::setupPages(UMLObject * c, bool assoc) {
 
     if (ot == Uml::ot_Class || ot == Uml::ot_Interface) {
         //setup operations page
-        TQFrame* newPage = addPage( i18n("Operations"), i18n("Operation Settings"), DesktopIcon("misc") );
+        TQFrame* newPage = addPage( i18n("Operations"), i18n("Operation Settings"), DesktopIcon("application-vnd.tde.misc") );
         m_pOpsPage = new ClassifierListPage(newPage, (UMLClassifier*)c, m_pDoc, Uml::ot_Operation);
         TQHBoxLayout* pOpsLayout = new TQHBoxLayout(newPage);
         pOpsLayout -> addWidget(m_pOpsPage);
@@ -192,28 +192,28 @@ void ClassPropDlg::setupPages(UMLObject * c, bool assoc) {
 
     if (ot == Uml::ot_Class || ot == Uml::ot_Interface) {
         //setup templates page
-        TQFrame* newPage = addPage( i18n("Templates"), i18n("Templates Settings"), DesktopIcon("misc") );
+        TQFrame* newPage = addPage( i18n("Templates"), i18n("Templates Settings"), DesktopIcon("application-vnd.tde.misc") );
         m_pTemplatePage = new ClassifierListPage(newPage, (UMLClassifier *)c, m_pDoc, Uml::ot_Template);
         TQHBoxLayout* templatesLayout = new TQHBoxLayout(newPage);
         templatesLayout->addWidget(m_pTemplatePage);
     }
     if (ot == Uml::ot_Enum) {
         //setup enum literals page
-        TQFrame* newPage = addPage( i18n("Enum Literals"), i18n("Enum Literals Settings"), DesktopIcon("misc") );
+        TQFrame* newPage = addPage( i18n("Enum Literals"), i18n("Enum Literals Settings"), DesktopIcon("application-vnd.tde.misc") );
         m_pEnumLiteralPage = new ClassifierListPage(newPage, (UMLClassifier*)c, m_pDoc, Uml::ot_EnumLiteral);
         TQHBoxLayout* enumLiteralsLayout = new TQHBoxLayout(newPage);
         enumLiteralsLayout->addWidget(m_pEnumLiteralPage);
     }
     if (ot == Uml::ot_Entity) {
         //setup enum literals page
-        TQFrame* newPage = addPage( i18n("Entity Attributes"), i18n("Entity Attributes Settings"), DesktopIcon("misc") );
+        TQFrame* newPage = addPage( i18n("Entity Attributes"), i18n("Entity Attributes Settings"), DesktopIcon("application-vnd.tde.misc") );
         m_pEntityAttributePage = new ClassifierListPage(newPage, (UMLClassifier*)c, m_pDoc, Uml::ot_EntityAttribute);
         TQHBoxLayout* entityAttributesLayout = new TQHBoxLayout(newPage);
         entityAttributesLayout->addWidget(m_pEntityAttributePage);
     }
     if (ot == Uml::ot_Package ) {
         // Set up containment page.
-        TQFrame* newPage = addPage( i18n("Contents"), i18n("Contents Settings"), DesktopIcon("misc") );
+        TQFrame* newPage = addPage( i18n("Contents"), i18n("Contents Settings"), DesktopIcon("application-vnd.tde.misc") );
         m_pPkgContentsPage = new PkgContentsPage(newPage, (UMLPackage*)(c));
         TQHBoxLayout* contentsLayout = new TQHBoxLayout(newPage);
         contentsLayout->addWidget(m_pPkgContentsPage);
@@ -229,7 +229,7 @@ void ClassPropDlg::setupPages(UMLObject * c, bool assoc) {
 }
 
 void ClassPropDlg::setupInstancePages(UMLWidget* widget) {
-    TQFrame* page = addPage( i18n("General"), i18n("General Settings"), DesktopIcon("misc") );
+    TQFrame* page = addPage( i18n("General"), i18n("General Settings"), DesktopIcon("application-vnd.tde.misc") );
     TQHBoxLayout* genLayout = new TQHBoxLayout(page);
     page->setMinimumSize(310, 330);
     m_pGenPage = new ClassGenPage(m_pDoc, page, widget);
diff --git a/umbrello/umbrello/listpopupmenu.cpp b/umbrello/umbrello/listpopupmenu.cpp
index 63febee8..0dc0d61a 100644
--- a/umbrello/umbrello/listpopupmenu.cpp
+++ b/umbrello/umbrello/listpopupmenu.cpp
@@ -278,7 +278,7 @@ ListPopupMenu::ListPopupMenu(TQWidget * parent, UMLWidget * object,
 
     case Uml::wt_Enum:
         m_pInsert = new TDEPopupMenu(this);
-        m_pInsert->insertItem(SmallIcon("source"), i18n("Enum Literal..."), mt_EnumLiteral);
+        m_pInsert->insertItem(SmallIcon("text-x-src"), i18n("Enum Literal..."), mt_EnumLiteral);
         insertFileNew();
         setupColor(object->getUseFillColour());
         insertStdItems(true, type);
@@ -289,7 +289,7 @@ ListPopupMenu::ListPopupMenu(TQWidget * parent, UMLWidget * object,
 
     case Uml::wt_Entity:
         m_pInsert = new TDEPopupMenu(this);
-        m_pInsert->insertItem(SmallIcon("source"), i18n("Entity Attribute..."), mt_EntityAttribute);
+        m_pInsert->insertItem(SmallIcon("text-x-src"), i18n("Entity Attribute..."), mt_EntityAttribute);
         insertFileNew();
         setupColor(object->getUseFillColour());
         insertStdItems(true, type);
@@ -465,7 +465,7 @@ void ListPopupMenu::insertStdItem(Menu_Type m)
 {
     switch (m) {
     case mt_Properties:
-        insertItem(SmallIcon("info"), i18n("Properties"), mt_Properties);
+        insertItem(SmallIcon("application-vnd.tde.info"), i18n("Properties"), mt_Properties);
         break;
     case mt_Rename:
         insertItem(i18n("Rename..."), mt_Rename);
@@ -504,7 +504,7 @@ void ListPopupMenu::insertStdItem(Menu_Type m)
         insertItem(i18n("Internalize Folder"), mt_Internalize_Folder);
         break;
     case mt_Import_Classes:
-        insertItem(BarIcon("source_cpp"), i18n("Import Classes..."), mt_Import_Classes);
+        insertItem(BarIcon("text-x-c++src"), i18n("Import Classes..."), mt_Import_Classes);
         break;
     case mt_Package:
         m_pInsert->insertItem(m_pixmap[pm_Package], i18n("Package"), mt_Package);
@@ -558,7 +558,7 @@ void ListPopupMenu::insertStdItem(Menu_Type m)
         insertItem(i18n("Reset Label Positions"), mt_Reset_Label_Positions);
         break;
     case mt_New_Parameter:
-        insertItem(SmallIcon("source"), i18n("New Parameter..."), mt_New_Parameter);
+        insertItem(SmallIcon("text-x-src"), i18n("New Parameter..."), mt_New_Parameter);
         break;
     case mt_New_Operation:
         insertItem(SmallIcon("CVpublic_meth"),i18n("New Operation..."), mt_New_Operation);
@@ -567,19 +567,19 @@ void ListPopupMenu::insertStdItem(Menu_Type m)
         insertItem(SmallIcon("CVpublic_var"), i18n("New Attribute..."), mt_New_Attribute);
         break;
     case mt_New_Template:
-        insertItem(SmallIcon("source"), i18n("New Template..."), mt_New_Template);
+        insertItem(SmallIcon("text-x-src"), i18n("New Template..."), mt_New_Template);
         break;
     case mt_New_EnumLiteral:
-        insertItem(SmallIcon("source"), i18n("New Literal..."), mt_New_EnumLiteral);
+        insertItem(SmallIcon("text-x-src"), i18n("New Literal..."), mt_New_EnumLiteral);
         break;
     case mt_New_EntityAttribute:
-        insertItem(SmallIcon("source"), i18n("New Entity Attribute..."), mt_New_EntityAttribute);
+        insertItem(SmallIcon("text-x-src"), i18n("New Entity Attribute..."), mt_New_EntityAttribute);
         break;
     case mt_New_Activity:
-        m_pInsert->insertItem(SmallIcon("source"), i18n("Activity..."), mt_New_Activity);
+        m_pInsert->insertItem(SmallIcon("text-x-src"), i18n("Activity..."), mt_New_Activity);
         break;
     case mt_Export_Image:
-        insertItem(SmallIcon("image"), i18n("Export as Picture..."), mt_Export_Image);
+        insertItem(SmallIcon("image-x-generic"), i18n("Export as Picture..."), mt_Export_Image);
         break;
     default:
         kWarning() << "ListPopupMenu::insertStdItem called on unimplemented Menu_Type " << m << endl;
@@ -1088,7 +1088,7 @@ void ListPopupMenu::setupMenu(Menu_Type type, UMLView* view) {
         m_pInsert = new TDEPopupMenu(this);
         m_pInsert -> insertItem(SmallIcon( "CVpublic_var"), i18n("Attribute"), mt_Attribute);
         m_pInsert -> insertItem(SmallIcon( "CVpublic_meth"), i18n("Operation"), mt_Operation);
-        m_pInsert -> insertItem(SmallIcon("source"), i18n("Template"), mt_Template);
+        m_pInsert -> insertItem(SmallIcon("text-x-src"), i18n("Template"), mt_Template);
         insertFileNew();
         insertStdItems();
         insertStdItem(mt_Properties);
@@ -1097,7 +1097,7 @@ void ListPopupMenu::setupMenu(Menu_Type type, UMLView* view) {
     case mt_Interface:
         m_pInsert = new TDEPopupMenu(this);
         m_pInsert->insertItem(SmallIcon("CVpublic_meth"), i18n("Operation"), mt_Operation);
-        m_pInsert -> insertItem(SmallIcon("source"), i18n("Template"), mt_Template);
+        m_pInsert -> insertItem(SmallIcon("text-x-src"), i18n("Template"), mt_Template);
         insertFileNew();
         insertStdItems();
         insertStdItem(mt_Properties);
@@ -1140,7 +1140,7 @@ void ListPopupMenu::setupMenu(Menu_Type type, UMLView* view) {
 
     case mt_Entity:
         m_pInsert = new TDEPopupMenu(this);
-        m_pInsert->insertItem(SmallIcon("source"), i18n("Entity Attribute..."), mt_EntityAttribute);
+        m_pInsert->insertItem(SmallIcon("text-x-src"), i18n("Entity Attribute..."), mt_EntityAttribute);
         insertFileNew();
         insertStdItems();
         insertStdItem(mt_Properties);
@@ -1152,7 +1152,7 @@ void ListPopupMenu::setupMenu(Menu_Type type, UMLView* view) {
 
     case mt_Enum:
         m_pInsert = new TDEPopupMenu(this);
-        m_pInsert->insertItem(SmallIcon("source"), i18n("Enum Literal..."), mt_EnumLiteral);
+        m_pInsert->insertItem(SmallIcon("text-x-src"), i18n("Enum Literal..."), mt_EnumLiteral);
         insertFileNew();
         insertStdItems();
         insertStdItem(mt_Properties);
@@ -1229,7 +1229,7 @@ void ListPopupMenu::setupMenu(Menu_Type type, UMLView* view) {
         break;
 
     case mt_Template_Selected:
-        insertItem(SmallIcon("source"),i18n("New Template..."), mt_New_Attribute);
+        insertItem(SmallIcon("text-x-src"),i18n("New Template..."), mt_New_Attribute);
         insertStdItem(mt_Delete);
         insertStdItem(mt_Properties);
         break;
diff --git a/umbrello/umbrello/uml.cpp b/umbrello/umbrello/uml.cpp
index 12caf6b0..a4feb485 100644
--- a/umbrello/umbrello/uml.cpp
+++ b/umbrello/umbrello/uml.cpp
@@ -195,7 +195,7 @@ void UMLApp::initActions() {
     genAll = new TDEAction(i18n("&Generate All Code"),0,TQT_TQOBJECT(this),TQT_SLOT(generateAllCode()),
                          actionCollection(),"generate_all");
 
-    importClasses = new TDEAction(i18n("&Import Classes..."), SmallIconSet("source_cpp"), 0,
+    importClasses = new TDEAction(i18n("&Import Classes..."), SmallIconSet("text-x-c++src"), 0,
                                 TQT_TQOBJECT(this),TQT_SLOT(slotImportClasses()), actionCollection(),"import_class");
 
     fileNew->setToolTip(i18n("Creates a new document"));
@@ -266,11 +266,11 @@ void UMLApp::initActions() {
 #endif
     deleteDiagram = new TDEAction(i18n("&Delete"), SmallIconSet("edit-delete"), 0,
                                 TQT_TQOBJECT(this), TQT_SLOT( slotDeleteDiagram() ), actionCollection(), "view_delete");
-    viewExportImage = new TDEAction(i18n("&Export as Picture..."), SmallIconSet("image"), 0,
+    viewExportImage = new TDEAction(i18n("&Export as Picture..."), SmallIconSet("image-x-generic"), 0,
                                   TQT_TQOBJECT(this), TQT_SLOT( slotCurrentViewExportImage() ), actionCollection(), "view_export_image");
-    viewExportImageAll = new TDEAction(i18n("Export &All Diagrams as Pictures..."), SmallIconSet("image"), 0,
+    viewExportImageAll = new TDEAction(i18n("Export &All Diagrams as Pictures..."), SmallIconSet("image-x-generic"), 0,
                                      TQT_TQOBJECT(this), TQT_SLOT( slotAllViewsExportImage() ), actionCollection(), "view_export_image_all");
-    viewProperties = new TDEAction(i18n("&Properties"), SmallIconSet("info"), 0,
+    viewProperties = new TDEAction(i18n("&Properties"), SmallIconSet("application-vnd.tde.info"), 0,
                                  TQT_TQOBJECT(this), TQT_SLOT( slotCurrentViewProperties() ), actionCollection(), "view_properties");
 
     viewSnapToGrid->setChecked(false);
-- 
cgit v1.2.1