summaryrefslogtreecommitdiff
Unidiff
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
@@ -88,27 +88,34 @@ signals:
88 historyCursorChanged( int value ); 88 historyCursorChanged( int value );
89 89
90 /** 90 /**
91 * selection should be cleared 91 * selection should be cleared
92 */ 92 */
93 void selectionCleared(); 93 void selectionCleared();
94 94
95 /** 95 /**
96 * selection begin 96 * selection begin
97 */ 97 */
98 void selectionBegin( const int x, const int y ) 98 void selectionBegin( const int x, const int y )
99 99
100 /** 100 /**
101 * selection extended 101 * selection extended
102 * (from begin s.a. to x, y) 102 * (from begin s.a. to x, y)
103 */ 103 */
104 void selectionExtended( const int x, const int y ); 104 void selectionExtended( const int x, const int y );
105 105
106 /** 106 /**
107 * selection end 107 * selection end
108 * bool: preserve line breaks in selection 108 * bool: preserve line breaks in selection
109 */ 109 */
110 void selectionEnd( const bool lineBreakPreserve ); 110 void selectionEnd( const bool lineBreakPreserve );
111 111
112slots:
113
114 /**
115 * clear selection
116 */
117 onClearSelection();
118
112}; 119};
113 120
114 121