3 Minimum Profit - Programmer Text Editor
7 Copyright (C) 2008-2010 Angel Ortega <angel@triptico.com>
9 This program is free software; you can redistribute it and/or
10 modify it under the terms of the GNU General Public License
11 as published by the Free Software Foundation; either version 2
12 of the License, or (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 http://www.triptico.com
27 /* override auto-generated definition in config.h */
28 extern "C" int kde4_drv_detect(int * argc
, char *** argv
);
40 #include <QtGui/QKeyEvent>
41 #include <QtGui/QPainter>
42 #include <QtGui/QMenu>
44 #include <QtGui/QLabel>
45 #include <QtGui/QComboBox>
46 #include <QtGui/QLineEdit>
47 #include <QtGui/QCheckBox>
48 #include <QtGui/QListWidget>
49 #include <QtGui/QScrollBar>
50 #include <QtGui/QClipboard>
52 #include <KApplication>
54 #include <KCmdLineArgs>
56 #include <KMainWindow>
66 #include <KMessageBox>
67 #include <KFileDialog>
72 class MPWindow
: public KMainWindow
75 MPWindow(QWidget
*parent
= 0);
77 bool event(QEvent
*event
);
80 class MPArea
: public QWidget
85 MPArea(QWidget
*parent
= 0);
86 void inputMethodEvent(QInputMethodEvent
*event
);
87 void keyPressEvent(QKeyEvent
*event
);
88 void keyReleaseEvent(QKeyEvent
*event
);
89 void mousePressEvent(QMouseEvent
*event
);
90 void mouseReleaseEvent(QMouseEvent
*event
);
91 void mouseMoveEvent(QMouseEvent
*event
);
92 void wheelEvent(QWheelEvent
*event
);
93 void dragEnterEvent(QDragEnterEvent
*event
);
94 void dropEvent(QDropEvent
*event
);
95 bool event(QEvent
*event
);
100 void paintEvent(QPaintEvent
*event
);
103 void from_scrollbar(int);
104 void from_filetabs(int);
105 void from_menu(QAction
*);
106 void from_timer(void);
113 KStatusBar
*statusbar
;
116 #define MENU_CLASS KMenu
118 #include "mpv_qk_common.cpp"
120 static void draw_status(void)
122 statusbar
->changeItem(str_to_qstring(mp_build_status_line()), 0);
125 /** MPWindow methods **/
127 MPWindow::MPWindow(QWidget
*parent
) : KMainWindow(parent
)
129 menubar
= this->menuBar();
132 statusbar
= this->statusBar();
133 statusbar
->insertItem("mp " VERSION
, 0);
135 /* the full container */
136 KVBox
*vb
= new KVBox(this);
138 file_tabs
= new KTabBar(vb
);
139 file_tabs
->setFocusPolicy(Qt::NoFocus
);
141 KHBox
*hb
= new KHBox(vb
);
144 area
= new MPArea(hb
);
145 scrollbar
= new QScrollBar(hb
);
146 scrollbar
->setFocusPolicy(Qt::NoFocus
);
148 setCentralWidget(vb
);
150 connect(scrollbar
, SIGNAL(valueChanged(int)),
151 area
, SLOT(from_scrollbar(int)));
153 connect(file_tabs
, SIGNAL(currentChanged(int)),
154 area
, SLOT(from_filetabs(int)));
156 connect(menubar
, SIGNAL(triggered(QAction
*)),
157 area
, SLOT(from_menu(QAction
*)));
159 this->setWindowIcon(QIcon(QPixmap(mp_xpm
)));
161 this->setAutoSaveSettings(QLatin1String("MinimumProfit"), true);
165 bool MPWindow::queryExit(void)
167 mp_process_event(MPDM_LS(L
"close-window"));
169 this->saveAutoSaveSettings();
171 return mp_exit_requested
? true : false;
175 bool MPWindow::event(QEvent
*event
)
177 /* do the processing */
178 bool r
= QWidget::event(event
);
180 if (mp_exit_requested
) {
181 this->saveAutoSaveSettings();
189 /** driver functions **/
191 static mpdm_t
kde4_drv_update_ui(mpdm_t a
)
193 return qt4_drv_update_ui(a
);
197 static mpdm_t
kde4_drv_alert(mpdm_t a
)
198 /* alert driver function */
201 KMessageBox::information(0, str_to_qstring(mpdm_aget(a
, 0)),
202 i18n("mp " VERSION
));
207 static mpdm_t
kde4_drv_confirm(mpdm_t a
)
208 /* confirm driver function */
213 r
= KMessageBox::questionYesNoCancel(0,
214 str_to_qstring(mpdm_aget(a
, 0)), i18n("mp" VERSION
));
217 case KMessageBox::Yes
:
221 case KMessageBox::No
:
225 case KMessageBox::Cancel
:
234 static mpdm_t
kde4_drv_openfile(mpdm_t a
)
239 getcwd(tmp
, sizeof(tmp
));
242 r
= KFileDialog::getOpenFileName(KUrl::fromPath(tmp
), "*", 0,
243 str_to_qstring(mpdm_aget(a
, 0)));
245 return qstring_to_str(r
);
249 static mpdm_t
kde4_drv_savefile(mpdm_t a
)
254 getcwd(tmp
, sizeof(tmp
));
257 r
= KFileDialog::getSaveFileName(KUrl::fromPath(tmp
), "*", 0,
258 str_to_qstring(mpdm_aget(a
, 0)));
260 return qstring_to_str(r
);
264 static mpdm_t
kde4_drv_form(mpdm_t a
)
271 KDialog
*dialog
= new KDialog(window
);
273 dialog
->setModal(true);
274 dialog
->setButtons(KDialog::Ok
| KDialog::Cancel
);
276 widget_list
= mpdm_aget(a
, 0);
278 KVBox
*vb
= new KVBox(dialog
);
279 dialog
->setMainWidget(vb
);
281 for (n
= 0; n
< mpdm_size(widget_list
); n
++) {
282 mpdm_t w
= mpdm_aget(widget_list
, n
);
285 KHBox
*hb
= new KHBox(vb
);
287 type
= mpdm_string(mpdm_hget_s(w
, L
"type"));
289 if ((t
= mpdm_hget_s(w
, L
"label")) != NULL
) {
290 QLabel
*ql
= new QLabel(hb
);
291 ql
->setText(str_to_qstring(mpdm_gettext(t
)));
294 t
= mpdm_hget_s(w
, L
"value");
296 if (wcscmp(type
, L
"text") == 0) {
298 QComboBox
*ql
= new QComboBox(hb
);
300 ql
->setEditable(true);
301 ql
->setMinimumContentsLength(30);
302 ql
->setMaxVisibleItems(8);
305 ql
->setEditText(str_to_qstring(t
));
309 if ((h
= mpdm_hget_s(w
, L
"history")) != NULL
) {
312 /* has history; fill it */
313 h
= mp_get_history(h
);
315 for (i
= mpdm_size(h
) - 1; i
>= 0; i
--)
316 ql
->addItem(str_to_qstring(mpdm_aget(h
, i
)));
320 if (wcscmp(type
, L
"password") == 0) {
321 QLineEdit
*ql
= new QLineEdit(hb
);
323 ql
->setEchoMode(QLineEdit::Password
);
328 if (wcscmp(type
, L
"checkbox") == 0) {
329 QCheckBox
*qc
= new QCheckBox(hb
);
332 qc
->setCheckState(Qt::Checked
);
337 if (wcscmp(type
, L
"list") == 0) {
339 QListWidget
*ql
= new QListWidget(hb
);
340 ql
->setMinimumWidth(480);
342 /* use a monospaced font */
343 ql
->setFont(QFont(QString("Mono")));
345 mpdm_t l
= mpdm_hget_s(w
, L
"list");
347 for (i
= 0; i
< mpdm_size(l
); i
++)
348 ql
->addItem(str_to_qstring(mpdm_aget(l
, i
)));
350 ql
->setCurrentRow(mpdm_ival(t
));
356 qlist
[n
]->setFocus(Qt::OtherFocusReason
);
364 r
= MPDM_A(mpdm_size(widget_list
));
366 /* fill the return values */
367 for (n
= 0; n
< mpdm_size(widget_list
); n
++) {
368 mpdm_t w
= mpdm_aget(widget_list
, n
);
372 type
= mpdm_string(mpdm_hget_s(w
, L
"type"));
374 if (wcscmp(type
, L
"text") == 0) {
376 QComboBox
*ql
= (QComboBox
*)qlist
[n
];
378 v
= qstring_to_str(ql
->currentText());
380 /* if it has history, add to it */
381 if ((h
= mpdm_hget_s(w
, L
"history")) != NULL
&&
382 v
!= NULL
&& mpdm_cmp_s(v
, L
"") != 0) {
383 h
= mp_get_history(h
);
385 if (mpdm_cmp(v
, mpdm_aget(h
, -1)) != 0)
390 if (wcscmp(type
, L
"password") == 0) {
391 QLineEdit
*ql
= (QLineEdit
*)qlist
[n
];
393 v
= qstring_to_str(ql
->text());
396 if (wcscmp(type
, L
"checkbox") == 0) {
397 QCheckBox
*qb
= (QCheckBox
*)qlist
[n
];
399 v
= MPDM_I(qb
->checkState() == Qt::Checked
);
402 if (wcscmp(type
, L
"list") == 0) {
403 QListWidget
*ql
= (QListWidget
*)qlist
[n
];
405 v
= MPDM_I(ql
->currentRow());
415 static mpdm_t
kde4_drv_busy(mpdm_t a
)
417 return qt4_drv_busy(a
);
421 static mpdm_t
kde4_drv_main_loop(mpdm_t a
)
423 return qt4_drv_main_loop(a
);
427 static mpdm_t
kde4_drv_shutdown(mpdm_t a
)
429 return qt4_drv_shutdown(a
);
433 static mpdm_t
kde4_drv_clip_to_sys(mpdm_t a
)
435 return qt4_drv_clip_to_sys(a
);
439 static mpdm_t
kde4_drv_sys_to_clip(mpdm_t a
)
441 return qt4_drv_sys_to_clip(a
);
445 static mpdm_t
kde4_drv_timer(mpdm_t a
)
447 return qt4_drv_timer(a
);
450 static void register_functions(void)
454 drv
= mpdm_hget_s(mp
, L
"drv");
455 mpdm_hset_s(drv
, L
"main_loop", MPDM_X(kde4_drv_main_loop
));
456 mpdm_hset_s(drv
, L
"shutdown", MPDM_X(kde4_drv_shutdown
));
458 mpdm_hset_s(drv
, L
"clip_to_sys", MPDM_X(kde4_drv_clip_to_sys
));
459 mpdm_hset_s(drv
, L
"sys_to_clip", MPDM_X(kde4_drv_sys_to_clip
));
460 mpdm_hset_s(drv
, L
"update_ui", MPDM_X(kde4_drv_update_ui
));
461 mpdm_hset_s(drv
, L
"timer", MPDM_X(kde4_drv_timer
));
462 mpdm_hset_s(drv
, L
"busy", MPDM_X(kde4_drv_busy
));
464 mpdm_hset_s(drv
, L
"alert", MPDM_X(kde4_drv_alert
));
465 mpdm_hset_s(drv
, L
"confirm", MPDM_X(kde4_drv_confirm
));
466 mpdm_hset_s(drv
, L
"openfile", MPDM_X(kde4_drv_openfile
));
467 mpdm_hset_s(drv
, L
"savefile", MPDM_X(kde4_drv_savefile
));
468 mpdm_hset_s(drv
, L
"form", MPDM_X(kde4_drv_form
));
472 static mpdm_t
kde4_drv_startup(mpdm_t a
)
473 /* driver initialization */
475 register_functions();
480 window
= new MPWindow();
486 extern "C" Display
*XOpenDisplay(char *);
488 extern "C" int kde4_drv_detect(int * argc
, char *** argv
)
491 KCmdLineOptions opts
;
492 Display
*x11_display
;
495 for (n
= 0; n
< *argc
; n
++) {
496 if (strcmp(argv
[0][n
], "-txt") == 0 ||
497 strcmp(argv
[0][n
], "-h") == 0)
501 /* try connecting directly to the Xserver */
502 if ((x11_display
= XOpenDisplay((char *)NULL
)) == NULL
)
505 KAboutData
aboutData(
507 ki18n("Minimum Profit"), VERSION
,
508 ki18n("A programmer's text editor"),
509 KAboutData::License_GPL
,
510 ki18n("Copyright (c) 1991-2009 Angel Ortega"),
512 "http://triptico.com",
516 KCmdLineArgs::init(*argc
, *argv
, &aboutData
);
518 /* command line options should be inserted here (I don't like this) */
519 opts
.add("t {tag}", ki18n("Edits the file where tag is defined"));
520 opts
.add("e {mpsl_code}", ki18n("Executes MPSL code"));
521 opts
.add("f {mpsl_script}", ki18n("Executes MPSL script file"));
522 opts
.add("d {directory}", ki18n("Sets working directory"));
523 opts
.add("x {file}", ki18n("Open file in the hexadecimal viewer"));
524 opts
.add(" +NNN", ki18n("Moves to line number NNN of last file"));
525 opts
.add("txt", ki18n("Use text mode instead of GUI"));
526 opts
.add("+[file(s)]", ki18n("Documents to open"));
527 KCmdLineArgs::addCmdLineOptions(opts
);
529 /* this is where it crashes if no X server */
530 app
= new KApplication(x11_display
);
532 drv
= mpdm_hget_s(mp
, L
"drv");
533 mpdm_hset_s(drv
, L
"id", MPDM_LS(L
"kde4"));
534 mpdm_hset_s(drv
, L
"startup", MPDM_X(kde4_drv_startup
));
539 #include "mpv_kde4.moc"