ossp-pkg/as/as-gui/as_slot.cpp 1.23 -> 1.24
--- as_slot.cpp 2002/11/26 23:26:07 1.23
+++ as_slot.cpp 2002/11/27 18:40:15 1.24
@@ -184,6 +184,16 @@
}
//
+// Edit a table entry in place, without the usual edit controls
+//
+void Titraqform::inplaceEdit(int nRow, int nCol, int nButton, const QPoint &Mousepos)
+{
+ m_pMaintable->setReadOnly(false);
+ m_pMaintable->editCell(nRow, nCol);
+ m_pMaintable->setReadOnly(true);
+}
+
+//
// Update the edit controls contents
//
void Titraqform::updEdit(int nRow, int nCol)
|
|