summaryrefslogtreecommitdiff
authoribotty <ibotty>2002-10-06 00:53:57 (UTC)
committer ibotty <ibotty>2002-10-06 00:53:57 (UTC)
commit0e67d3b0704e10c1e4676d568caf67d97b604445 (patch) (side-by-side diff)
tree69b2bb0e4961f82539b6e0f4875aca9a6203e06d
parent9d081a8b393b8291d3d1b8cd064d9d928c2b0efc (diff)
downloadopie-0e67d3b0704e10c1e4676d568caf67d97b604445.zip
opie-0e67d3b0704e10c1e4676d568caf67d97b604445.tar.gz
opie-0e67d3b0704e10c1e4676d568caf67d97b604445.tar.bz2
forgot something (virtually falling asleep now)
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/widget_layer.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/widget_layer.h b/noncore/apps/opie-console/widget_layer.h
index a1f3f30..5474c64 100644
--- a/noncore/apps/opie-console/widget_layer.h
+++ b/noncore/apps/opie-console/widget_layer.h
@@ -64,51 +64,58 @@ public:
signals:
/**
* key was pressed
*/
keyPressed( QKeyEvent *e );
/**
* whenever Mouse selects something
* 0 left Button
* 3 Button released
* // numbering due to layout in old TEWidget
*/
mousePressed( int button, int x, int y );
/**
* size of image changed
*/
imageSizeChanged( int lines, int columns );
/**
* cursor in history changed
*/
historyCursorChanged( int value );
/**
* selection should be cleared
*/
void selectionCleared();
/**
* selection begin
*/
void selectionBegin( const int x, const int y )
/**
* selection extended
* (from begin s.a. to x, y)
*/
void selectionExtended( const int x, const int y );
/**
* selection end
* bool: preserve line breaks in selection
*/
void selectionEnd( const bool lineBreakPreserve );
+slots:
+
+ /**
+ * clear selection
+ */
+ onClearSelection();
+
};