--- as_assist.cpp 2002/12/04 15:50:29 1.45
+++ as_assist.cpp 2002/12/04 16:17:02 1.46
@@ -216,7 +216,7 @@
connect(m_pFilequitact, SIGNAL(activated()), qApp, SLOT(quit()));
// Cut action
- m_pCutact = new QAction(trUtf8("Cut"), QPixmap(s_kpcCut_xpm), trUtf8("&Cut"), 0, this, "Cut");
+ m_pCutact = new QAction(trUtf8("Cut"), QPixmap(s_kpcCut_xpm), trUtf8("&Cut"), CTRL+Key_X, this, "Cut");
if (m_pCutact == NULL) // Sanity check
throw Genexcept("Main window cut edit action creation failed.");
connect(m_pCutact, SIGNAL(activated()), this, SLOT(cutEntry()));
@@ -227,7 +227,7 @@
m_pCutact->setWhatsThis(kszCuttext);
// Copy action
- m_pCopyact = new QAction(trUtf8("Copy"), QPixmap(s_kpcCopy_xpm), trUtf8("&Copy"), 0, this, "Copy");
+ m_pCopyact = new QAction(trUtf8("Copy"), QPixmap(s_kpcCopy_xpm), trUtf8("&Copy"), CTRL+Key_C, this, "Copy");
if (m_pCopyact == NULL) // Sanity check
throw Genexcept("Main window copy edit action creation failed.");
connect(m_pCopyact, SIGNAL(activated()), this, SLOT(copyEntry()));
@@ -238,7 +238,7 @@
m_pCopyact->setWhatsThis(kszCopytext);
// Paste action
- m_pPasteact = new QAction(trUtf8("Paste"), QPixmap(s_kpcPaste_xpm), trUtf8("&Paste"), 0, this, "Paste");
+ m_pPasteact = new QAction(trUtf8("Paste"), QPixmap(s_kpcPaste_xpm), trUtf8("&Paste"), CTRL+Key_V, this, "Paste");
if (m_pPasteact == NULL) // Sanity check
throw Genexcept("Main window paste edit action creation failed.");
connect(m_pPasteact, SIGNAL(activated()), this, SLOT(pasteEntry()));
@@ -249,7 +249,7 @@
m_pPasteact->setWhatsThis(kszPastetext);
// Add data row action
- m_pAddrowact = new QAction(trUtf8("Add Row"), QPixmap(s_kpcRowadd_xpm), trUtf8("&Add row"), 0, this, "Addrow");
+ m_pAddrowact = new QAction(trUtf8("Add Row"), QPixmap(s_kpcRowadd_xpm), trUtf8("&Add row"), CTRL+Key_A, this, "Addrow");
if (m_pAddrowact == NULL) // Sanity check
throw Genexcept("Main window add row action creation failed.");
connect(m_pAddrowact, SIGNAL(activated()), this, SLOT(addEntry()));
@@ -260,7 +260,7 @@
m_pAddrowact->setWhatsThis(kszAddrowtext);
// Delete data row action
- m_pDelrowact = new QAction(trUtf8("Delete Row"), QPixmap(s_kpcRowdel_xpm), trUtf8("&Delete row"), 0, this, "Delrow");
+ m_pDelrowact = new QAction(trUtf8("Delete Row"), QPixmap(s_kpcRowdel_xpm), trUtf8("&Delete row"), CTRL+Key_D, this, "Delrow");
if (m_pDelrowact == NULL) // Sanity check
throw Genexcept("Main window delete row action creation failed.");
connect(m_pDelrowact, SIGNAL(activated()), this, SLOT(delEntry()));
@@ -346,7 +346,7 @@
m_pTbarspopup->setItemChecked(nMenuid, true);
m_pViewpopup->insertSeparator();
m_pViewpopup->insertItem(trUtf8("&Columns"), m_pColspopup);
- nMenuid = m_pColspopup->insertItem(trUtf8("&Line number"), this, SLOT(showLinecol()));
+ nMenuid = m_pColspopup->insertItem(trUtf8("&Line"), this, SLOT(showLinecol()));
m_pColspopup->setItemEnabled(nMenuid, false);
nMenuid = m_pColspopup->insertItem(trUtf8("&GUID"), this, SLOT(showGuidcol()));
m_pColspopup->setItemEnabled(nMenuid, false);
@@ -356,11 +356,11 @@
m_pColspopup->setItemEnabled(nMenuid, false);
nMenuid = m_pColspopup->insertItem(trUtf8("&Task"), this, SLOT(showTaskcol()));
m_pColspopup->setItemEnabled(nMenuid, false);
- nMenuid = m_pColspopup->insertItem(trUtf8("&Start time"), this, SLOT(showStartcol()));
+ nMenuid = m_pColspopup->insertItem(trUtf8("&Start"), this, SLOT(showStartcol()));
m_pColspopup->setItemEnabled(nMenuid, false);
- nMenuid = m_pColspopup->insertItem(trUtf8("&Finish time"), this, SLOT(showFinishcol()));
+ nMenuid = m_pColspopup->insertItem(trUtf8("&Finish"), this, SLOT(showFinishcol()));
m_pColspopup->setItemEnabled(nMenuid, false);
- nMenuid = m_pColspopup->insertItem(trUtf8("&Amount time"), this, SLOT(showAmountcol()));
+ nMenuid = m_pColspopup->insertItem(trUtf8("&Amount"), this, SLOT(showAmountcol()));
m_pColspopup->setItemEnabled(nMenuid, false);
nMenuid = m_pColspopup->insertItem(trUtf8("&Remark"), this, SLOT(showRemarkcol()));
m_pColspopup->setItemEnabled(nMenuid, false);
|