File: keyboard.cpp

package info (click to toggle)
kascade 1.0-beta10-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 964 kB
  • ctags: 815
  • sloc: cpp: 7,780; makefile: 39
file content (253 lines) | stat: -rw-r--r-- 5,021 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#include "category.h"
#include "keyboard.h"
#include "globals.h"
#include "browser.h"
#include "preferences.h"
#include "categorylabel.h"
#include "globals.h"
#include "navigation.h"
#include "errors.h"

#include <qevent.h>
#include <qapplication.h>

void Keyboard::highlightUp()
{
	if( highlight-- == -1 )
		highlight = browser->allLabelv.size()/2-1;

	browser->setCatLabelColors();
	browser->checkScrollHeight();
}

void Keyboard::highlightDown()
{ 
	if( ++highlight == browser->allLabelv.size()/2 )
		highlight = -1;

	browser->setCatLabelColors();
	browser->checkScrollHeight();
}

void Keyboard::highlightFirst()
{
	highlight = 0;
	
	browser->setCatLabelColors();
	browser->checkScrollHeight();
}

void Keyboard::highlightLast()
{
	highlight = browser->allLabelv.size()/2-1;

	browser->setCatLabelColors();
	browser->checkScrollHeight();
}

void Keyboard::highlightPgUp()
{
	if( highlight == -1 )
		return; 

	int target = browser->allLabelv[2*highlight]->y() - browser->scrollView->viewport()->height();

	for( unsigned int n = 0; n < browser->allLabelv.size()/2; n++ )
	{
		int labeltop = browser->allLabelv[2*n]->y();

		if( labeltop-4 >= target )
		{
			highlight = n;
			browser->scrollView->setContentsPos( 0, labeltop-4 );
			break;
		}	
	}

	browser->setCatLabelColors();
}

void Keyboard::highlightPgDn()
{
	if( highlight == -1 )
		return; 

	int viewbottom = browser->scrollView->contentsY() + browser->scrollView->viewport()->height();

	for( unsigned int n = highlight; n < browser->allLabelv.size()/2; n++ )
	{
		int labeltop = browser->allLabelv[2*n]->y();
		int labelbottom = labeltop + browser->allLabelv[2*n]->height();

		if( labelbottom+4 > viewbottom )
		{
			highlight = n;		
			browser->scrollView->setContentsPos( 0, labeltop-4 );
			break;
		}
	}
	
	browser->setCatLabelColors();
}

void Keyboard::handleKeyPress( QKeyEvent *event )
{
	vector<int> &keybindingv = config->keyBindingv();

	for( unsigned int n = 0; n < keybindingv.size(); n += 2 )
		if( event->key() == keybindingv[n+1] )
		{
			act_on_key( keybindingv[n] );
			return;	
		}	

	act_on_key( event->key() );
}

void Keyboard::launchExt()
{
	if( highlight == -1 )
		return;

	CategoryLabel *label = (CategoryLabel *)(browser->allLabelv[2*highlight]);
	if( label->extension )
	{
		browser->extcat = label->category;
		browser->extensionOpenWith();
	}	
}

void Keyboard::act_on_key( int key )
{
	browser->keyboardaction = TRUE;

	switch( key )
	{
		case Key_O: 	update0( browser->action_openfile() );
				break;
		case Key_D:	browser->discussPressed();
				update2();
				break;
		case Key_Q:	browser->faqPressed();
				update2();
				break;
		case Key_B:	browser->basePressed();
				update2();
				break;
		case Key_E:	browser->clearCachePressed();
				update0( TRUE );
				break;
		case Key_Z: 	browser->debugWindowPressed();
				update2();
				break;
		case Key_A: 	browser->addBookmark();
				update2();
				break;
		case Key_V:	browser->showBookmarks();
				update2();
				break;
		case Key_Y:	browser->mlistPressed();
				update2();
				break;
		case Key_U:	update0( browser->action_openurl() );
				break;
		case Key_P: 	browser->showPreferences();
				update2();
				break;
		case Key_I:	browser->infoPressed();
				update2();
				break;
		case Key_N:	browser->newsPressed();
				update2();
				break;
		case Key_R: 	update0( action_jump( config->startAddress() ) );
				break;
		case Key_C: 	browser->chatPressed();
				update2();
				break;
		case Key_S:	browser->viewPageSource();
				update2();
				break;
		case Key_G:	browser->action_showlinks();
				update2();
				break;
		case Key_Left: 	update1( browser->action_backtrace() );
				break;
		case Key_F:	update1( browser->action_forwardtrace() );
				break;
		case Key_W:	launchExt();
				update2();
				break;
		case Key_Right:	if( highlight != -1 ) 
  					update0( action_enter( ((CategoryLabel *)(browser->allLabelv[2*highlight]))->category ) );
				break;
		case Key_Down: 	highlightDown();
				break;
		case Key_Up:	highlightUp();
				break;
		case Key_End:	highlightLast();
				break;
		case Key_Home:  highlightFirst();
				break;
		case Key_PageDown:
				highlightPgDn();
				break;
		case Key_X:	qApp->quit();
				break;
		case Key_PageUp:
				highlightPgUp();
				break;
		case Key_M:	browser->markPressed();
				update2();
				break;
		case Key_T:	browser->tomarkPressed();
				update2();
				break;
	}			
	
	browser->keyboardaction = FALSE;
} 
				
void Keyboard::update( int okay )
{
	if( !okay )
		return;

	browser->showNewCategory();
	browser->checkScrollHeight();
}

void Keyboard::update0( int okay )
{
	if( !okay ) 
		return;

	if( highlight != -1 )
		highlight = 0;
	browser->showNewCategory();
	browser->checkScrollHeight();
}

void Keyboard::update1( int okay )
{
	if( !okay )
		return;

	if( highlight == -1 )
		highlight = 0;
	browser->showNewCategory();
	browser->checkScrollHeight();
}

void Keyboard::update2()
{
/*	if( highlight == -1 )
	{
		highlight = 0;	
		browser->setCatLabelColors();
	}	 */
}

Keyboard::Keyboard() : QWidget()
{
}