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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
|
/***************************************************************************
* Copyright (C) 2006-2012 by Thomas Schweitzer *
* thomas-schweitzer(at)arcor.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License version 2.0 as *
* published by the Free Software Foundation. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program in the file LICENSE.GPL; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include "config.h"
#include "MainWindow.h"
///-- #include "debugging/TSLogger.h"
#include "stdlib.h"
#include "AboutDialog.h"
#include "IndentHandler.h"
#include "SettingsPaths.h"
#include "UiGuiSettings.h"
#include "UiGuiSettingsDialog.h"
#include "UiGuiVersion.h"
#include "ToolBarWidget.h"
///-- #include "AboutDialogGraphicsView.h"
#include "UiGuiHighlighter.h"
#include <tqaction.h>
#include <tqapplication.h>
#include <tqcheckbox.h>
#include <tqcursor.h>
#include <tqdragobject.h>
#include <tqfile.h>
#include <tqfiledialog.h>
#include <tqfileinfo.h>
#include <tqlabel.h>
#include <tqlocale.h>
#include <tqmessagebox.h>
#include <tqpixmap.h>
#include <tqpopupmenu.h>
#include <tqpushbutton.h>
#include <tqsplitter.h>
#include <tqstatusbar.h>
#include <tqtextcodec.h>
#include <tqtooltip.h>
#include <tqtranslator.h>
#include <tqwidget.h>
#include <tqextscintilla.h>
///-- #include <Qsci/qsciprinter.h>
///-- using namespace tschweitzer;
/*
\brief Main window of UniversalIndentGUI-tqt
The MainWindow class is responsible for generating and displaying most of the gui elements.
Its look is set in the file "mainwindow.ui". An object for the indent handler is generated here
and user actions are being controlled. It is responsible for file open dialogs and indenter selection.
*/
/*
\brief Constructs the main window.
*/
MainWindow::MainWindow(TQString file2OpenOnStart, TQWidget *parent) :
MainWindowBase(parent), m_aboutDialog(nullptr), m_qSciSourceCodeEditor(nullptr),
m_uiGuiTranslator(nullptr), m_textEditLineColumnInfoLabel(nullptr),
m_oldLinesNumber(0), m_openEncodingActions(), m_saveEncodingActions(),
m_encodingActionGroup(nullptr), m_saveEncodedActionGroup(nullptr),
m_highlighterActionGroup(nullptr), m_documentModified(false), m_previewToggled(true),
m_indentHandler(nullptr), m_centralSplitter(nullptr), m_settingsDialog(nullptr),
m_highlighter(nullptr), m_highlightingActions(), m_toolBarWidget(nullptr)
///_aboutDialogGraphicsView(nullptr), m_textEditVScrollBar(nullptr)
{
// Init of some variables.
m_sourceCodeChanged = false;
// Create the settings object, which loads all UiGui settings from a file.
m_settings = UiGuiSettings::getInstance();
// Initialize the language of the application.
initApplicationLanguage();
// Creates the main window and initializes it.
initMainWindow();
// Create toolbar and insert it into the main window.
initToolBar();
// Create the text edit component using the TQScintilla widget.
initTextEditor();
// Create and init the syntax highlighter.
initSyntaxHighlighter();
// Create and init the indenter.
initIndenter();
// Create some menus.
createEncodingMenu();
createHighlighterMenu();
// Generate about dialog box
//m_aboutDialog = new AboutDialog(this, WStyle_Splash);
m_aboutDialog = new AboutDialog(this);
///-- _aboutDialogGraphicsView = new AboutDialogGraphicsView(m_aboutDialog, this);
connect(actionAboutUniversalIndentGUITQt, SIGNAL(activated()), this, SLOT(showAboutDialog()));
// Generate settings dialog box
m_settingsDialog = new UiGuiSettingsDialog(this, m_settings);
connect(actionShowSettings, SIGNAL(activated()), m_settingsDialog, SLOT(showDialog()));
if (TQFile::exists(file2OpenOnStart))
{
// If a file that should be opened on start exists, load it
openSourceFileDialog(file2OpenOnStart);
}
else
{
// Otherwise load the last opened file, if this is enabled in the settings.
loadLastOpenedFile();
}
updateSyntaxHighlighting();
// Enable accept dropping of files.
setAcceptDrops(true);
}
MainWindow::~MainWindow()
{
delete m_settingsDialog;
delete m_aboutDialog;
UiGuiSettings::deleteInstance();
}
/*
\brief Initializes the main window by creating the main gui and make some settings.
*/
void MainWindow::initMainWindow()
{
// For icon setup
const TQString ICONS_PATH(APP_ICONS_PATH);
// Application icon
setIcon(TQPixmap(ICONS_PATH + "universalIndentGUI_64x64.png"));
// Menu icons
// - File menu
actionOpenSourceFile->setIconSet(TQPixmap(ICONS_PATH + "document-open.png"));
actionMenuRecentlyOpenedFiles->setIconSet(TQPixmap(ICONS_PATH + "document-open.png"));
actionClearRecentlyOpenedList->setIconSet(TQPixmap(ICONS_PATH + "edit-clear.png"));
actionMenuEncoding->setIconSet(TQPixmap(ICONS_PATH + "document-open.png"));
actionSaveSourceFile->setIconSet(TQPixmap(ICONS_PATH + "document-save.png"));
actionSaveSourceFileAs->setIconSet(TQPixmap(ICONS_PATH + "document-save-as.png"));
actionMenuSaveEncoded->setIconSet(TQPixmap(ICONS_PATH + "document-save-as.png"));
actionMenuExport->setIconSet(TQPixmap(ICONS_PATH + "exporthtml.png"));
actionExportPDF->setIconSet(TQPixmap(ICONS_PATH + "exportpdf.png"));
actionExportHTML->setIconSet(TQPixmap(ICONS_PATH + "exporthtml.png"));
actionExit->setIconSet(TQPixmap(ICONS_PATH + "system-log-out.png"));
// - Indenter menu
actionLoadIndenterConfigFile->setIconSet(TQPixmap(ICONS_PATH + "load_indent_cfg.png"));
actionSaveIndenterConfigFile->setIconSet(TQPixmap(ICONS_PATH + "save_indent_cfg.png"));
actionCreateShellScript->setIconSet(TQPixmap(ICONS_PATH + "shell.png"));
actionResetIndenterParameters->setIconSet(TQPixmap(ICONS_PATH + "view-refresh.png"));
// - Setting menu
actionLiveIndentPreview->setIconSet(TQPixmap(ICONS_PATH + "live-preview.png"));
actionEnableSyntaxHighlighting->setIconSet(TQPixmap(ICONS_PATH + "syntax-highlight.png"));
actionIndenterParameterTooltipsEnabled->setIconSet(TQPixmap(ICONS_PATH + "tooltip.png"));
actionShowSettings->setIconSet(TQPixmap(ICONS_PATH + "preferences-system.png"));
// - Help menu
actionShowLog->setIconSet(TQPixmap(ICONS_PATH + "document-properties.png"));
actionAboutUniversalIndentGUITQt->setIconSet(TQPixmap(ICONS_PATH + "info.png"));
// Menu ids
m_actionClearRecentlyOpenedListId = popupMenuRecentlyOpenedFiles->idAt(
popupMenuRecentlyOpenedFiles->count() - 1);
// Central splitter
m_centralSplitter = new TQSplitter(this);
m_centralSplitter->setChildrenCollapsible(true);
setCentralWidget(m_centralSplitter);
// Handle last opened window size
// ------------------------------
bool maximized = m_settings->getValueByName("WindowIsMaximized").toBool();
TQPoint pos = m_settings->getValueByName("WindowPosition").toPoint();
TQSize size = m_settings->getValueByName("WindowSize").toSize();
resize(size);
move(pos);
if (maximized)
{
showMaximized();
}
// Get last selected file encoding
// -------------------------------
m_currentEncoding = m_settings->getValueByName("FileEncoding").toString();
// Register the syntax highlighting setting in the menu to the settings object.
connect(actionEnableSyntaxHighlighting, SIGNAL(toggled(bool)),
m_settings, SLOT(handleValueChangeFromExtern(bool)));
connect(m_settings, SIGNAL(syntaxHighlightingEnabled(bool)),
actionEnableSyntaxHighlighting, SLOT(setOn(bool)));
actionEnableSyntaxHighlighting->setOn(
m_settings->getValueByName("SyntaxHighlightingEnabled").toBool());
// Tell the highlighter if it has to be enabled or disabled.
connect(m_settings, SIGNAL(syntaxHighlightingEnabled(bool)), this, SLOT(turnHighlightOnOff(bool)));
// Register the load last file setting in the menu to the settings object
connect(actionLoadLastOpenedFileOnStartup, SIGNAL(toggled(bool)),
m_settings, SLOT(handleValueChangeFromExtern(bool)));
connect(m_settings, SIGNAL(loadLastOpenedFileOnStartup(bool)),
actionLoadLastOpenedFileOnStartup, SLOT(setOn(bool)));
actionLoadLastOpenedFileOnStartup->setOn(
m_settings->getValueByName("LoadLastOpenedFileOnStartup").toBool());
// Register the white space setting in the menu to the settings object.
connect(actionWhiteSpaceIsVisible, SIGNAL(toggled(bool)),
m_settings, SLOT(handleValueChangeFromExtern(bool)));
connect(m_settings, SIGNAL(whiteSpaceIsVisible(bool)),
actionWhiteSpaceIsVisible, SLOT(setOn(bool)));
actionWhiteSpaceIsVisible->setOn(m_settings->getValueByName("WhiteSpaceIsVisible").toBool());
// Tell the TQScintilla editor if it has to show white space.
connect(m_settings, SIGNAL(whiteSpaceIsVisible(bool)), this, SLOT(setWhiteSpaceVisibility(bool)));
// Connect the remaining menu items.
connect(actionOpenSourceFile, SIGNAL(activated()), this, SLOT(openSourceFileDialog()));
connect(actionSaveSourceFile, SIGNAL(activated()), this, SLOT(saveSourceFile()));
connect(actionSaveSourceFileAs, SIGNAL(activated()), this, SLOT(saveasSourceFileDialog()));
connect(actionExportPDF, SIGNAL(activated()), this, SLOT(exportToPDF()));
connect(actionExportHTML, SIGNAL(activated()), this, SLOT(exportToHTML()));
connect(m_settings, SIGNAL(indenterParameterTooltipsEnabled(bool)),
this, SLOT(setIndenterParameterTooltips(bool)));
///-- connect(actionShowLog, SIGNAL(activated()),
///-- debugging::TSLogger::getInstance(), SLOT(show()));
// Init the menu for selecting one of the recently opened files.
initRecentlyOpenedList();
updateRecentlyOpenedList();
connect(popupMenuRecentlyOpenedFiles, SIGNAL(highlighted(int)),
this, SLOT(recentlyOpenedFileHighlighted(int)));
connect(popupMenuRecentlyOpenedFiles, SIGNAL(activated(int)),
this, SLOT(openFileFromRecentlyOpenedList(int)));
connect(m_settings, SIGNAL(recentlyOpenedListSize(int)), this, SLOT(updateRecentlyOpenedList()));
updateWindowTitle();
}
/*
\brief Creates and inits the tool bar. It is added to the main window.
*/
void MainWindow::initToolBar()
{
// For icon setup
const TQString ICONS_PATH(APP_ICONS_PATH);
// Create the tool bar and add it to the main window.
m_toolBarWidget = new ToolBarWidget(toolBar);
// Connect the tool bar widgets to their functions.
///-- m_settings->registerObjectProperty(_toolBarWidget->cbEnableSyntaxHL, "checked",
///-- "SyntaxHighlightingEnabled");
m_toolBarWidget->cbEnableSyntaxHL->hide();
m_toolBarWidget->pbOpenSourceFile->setIconSet(TQPixmap(ICONS_PATH + "document-open.png"));
connect(m_toolBarWidget->pbOpenSourceFile, SIGNAL(clicked()), this, SLOT(openSourceFileDialog()));
m_toolBarWidget->pbAbout->setIconSet(TQPixmap(ICONS_PATH + "info.png"));
connect(m_toolBarWidget->pbAbout, SIGNAL(clicked()), this, SLOT(showAboutDialog()));
m_toolBarWidget->pbExit->setIconSet(TQPixmap(ICONS_PATH + "system-log-out.png"));
connect(m_toolBarWidget->pbExit, SIGNAL(clicked()), this, SLOT(close()));
// Settings a pixmap hides the text in TQt3
//m_toolBarWidget->cbLivePreview->setPixmap(TQPixmap(ICONS_PATH + "live-preview.png"));
connect(m_toolBarWidget->cbLivePreview, SIGNAL(toggled(bool)), this, SLOT(previewTurnedOnOff(bool)));
connect(m_toolBarWidget->cbLivePreview, SIGNAL(toggled(bool)),
actionLiveIndentPreview, SLOT(setOn(bool)));
///-- connect(actionLiveIndentPreview, SIGNAL(toggled(
///-- bool)), m_toolBarWidget->cbLivePreview, SLOT(setChecked(bool)));
}
/*
\brief Create and initialize the text editor component. It uses the TQScintilla widget.
*/
void MainWindow::initTextEditor()
{
// Create the TQScintilla widget and add it to the layout.
try
{
m_qSciSourceCodeEditor = new TQextScintilla(m_centralSplitter);
}
catch (...)
{
TQMessageBox::critical(this, "Error creating TQScintilla text editor component!",
"While trying to create the text editor component (based on TQScintilla), an error "
"occurred. Please make sure that TQScintilla is installed and that release and debug "
"versions are not mixed.");
exit(1);
}
// Make some settings for the TQScintilla widget.
m_qSciSourceCodeEditor->setUtf8(true);
m_qSciSourceCodeEditor->setMarginLineNumbers(1, true);
m_qSciSourceCodeEditor->setMarginWidth(1, TQString("10000"));
m_qSciSourceCodeEditor->setBraceMatching(m_qSciSourceCodeEditor->SloppyBraceMatch);
m_qSciSourceCodeEditor->setMatchedBraceForegroundColor(TQColor("red"));
m_qSciSourceCodeEditor->setFolding(TQextScintilla::BoxedTreeFoldStyle);
m_qSciSourceCodeEditor->setAutoCompletionSource(TQextScintilla::AcsAll);
m_qSciSourceCodeEditor->setAutoCompletionThreshold(3);
// Handle if white space is set to be visible
bool whiteSpaceIsVisible = m_settings->getValueByName("WhiteSpaceIsVisible").toBool();
setWhiteSpaceVisibility(whiteSpaceIsVisible);
// Handle the width of tabs in spaces
int tabWidth = m_settings->getValueByName("TabWidth").toInt();
m_qSciSourceCodeEditor->setTabWidth(tabWidth);
connect(m_settings, SIGNAL(tabWidth(int)), m_qSciSourceCodeEditor, SLOT(setTabWidth(int)));
// TODO not available in TQScintilla 1.71
// Remember a pointer to the scrollbar of the TQScintilla widget used to keep
// on the same line as before when turning preview on/off.
//m_textEditVScrollBar = m_qSciSourceCodeEditor->verticalScrollBar();
// Add a column row indicator to the status bar.
m_textEditLineColumnInfoLabel = new TQLabel(tr("Line %1, Column %2").arg(1).arg(1), this);
statusBar()->addWidget(m_textEditLineColumnInfoLabel, 0, true);
connect(m_qSciSourceCodeEditor, SIGNAL(cursorPositionChanged(int,int)),
this, SLOT(setStatusBarCursorPosInfo(int, int)));
// Connect the text editor to dependent functions.
connect(m_qSciSourceCodeEditor, SIGNAL(textChanged()), this, SLOT(sourceCodeChangedHelperSlot()));
// TODO signal 'linesChanged' is not available in TQScintilla 1.71.
// Use textChanged for now and check for line number changes in the slot
//connect(m_qSciSourceCodeEditor, SIGNAL(linesChanged()), this, SLOT(numberOfLinesChanged()));
connect(m_qSciSourceCodeEditor, SIGNAL(textChanged()), this, SLOT(numberOfLinesChanged()));
numberOfLinesChanged();
}
void MainWindow::updateSyntaxHighlighting()
{
turnHighlightOnOff(actionEnableSyntaxHighlighting->isOn());
}
/*
\brief Create and init the syntax highlighter and set it to use the TQScintilla edit component.
*/
void MainWindow::initSyntaxHighlighter()
{
// Create the highlighter.
m_highlighter = new UiGuiHighlighter(m_qSciSourceCodeEditor);
// Handle if syntax highlighting is enabled
bool syntaxHighlightningEnabled = m_settings->getValueByName("SyntaxHighlightningEnabled").toBool();
turnHighlightOnOff(syntaxHighlightningEnabled);
}
/*
\brief Initializes the language of UniversalIndentGUI.
If the program language is defined in the m_settings, the corresponding language
file will be loaded and set for the application. If not set there, the system
default language will be set, if a translation file for that language exists.
Returns true, if the translation file could be loaded. Otherwise it returns
false and uses the default language, which is English.
*/
bool MainWindow::initApplicationLanguage()
{
TQString languageShort;
// Get the language settings from the settings object.
int languageIndex = m_settings->getValueByName("Language").toInt();
// If no language was set, indicated by a negative index, use the system language.
if (languageIndex < 0)
{
languageShort = TQLocale::system().name();
// Chinese and Japanese language consist of country and language code.
// For all others the language code will be cut off.
if (languageShort.left(2) != "zh" && languageShort.left(2) != "ja")
{
languageShort = languageShort.left(2);
}
// If no translation file for the systems local language exist, fall back to English.
if (m_settings->getAvailableTranslations().findIndex(languageShort) < 0)
{
languageShort = "en";
}
// Set the language setting to the new language.
m_settings->setValueByName("Language",
m_settings->getAvailableTranslations().findIndex(languageShort));
}
// If a language was defined in the m_settings, get this language mnemonic.
else
{
languageShort = m_settings->getAvailableTranslations()[languageIndex];
}
// Load the TQt own translation file and set it for the application.
// Load the uigui translation file and set it for the application.
m_uiGuiTranslator = new TQTranslator();
bool translationFileLoaded = m_uiGuiTranslator->load(SettingsPaths::getGlobalFilesPath() +
"/translations/universalindent_" + languageShort + ".qm");
if (translationFileLoaded)
{
tqApp->installTranslator(m_uiGuiTranslator);
}
connect(m_settings, SIGNAL(language(int)), this, SLOT(languageChanged(int)) );
return translationFileLoaded;
}
/*
\brief Creates and initializes the indenter.
*/
void MainWindow::initIndenter()
{
// Get Id of last selected indenter.
m_currentIndenterID = m_settings->getValueByName("SelectedIndenter").toInt();
// Create the indenter widget with the ID and add it to the layout.
m_indentHandler = new IndentHandler(m_currentIndenterID, this, m_centralSplitter);
m_centralSplitter->moveToFirst(m_indentHandler);
// If settings for the indenter have changed, let the main window know aboud it.
connect(m_indentHandler, SIGNAL(indenterSettingsChanged()), this,
SLOT(indentSettingsChangedSlot()));
// Set this true, so the indenter is called at first program start
m_indentSettingsChanged = true;
m_previewToggled = true;
///-- // Handle if indenter parameter tool tips are enabled
///-- m_settings->registerObjectProperty(actionIndenterParameterTooltipsEnabled,
///-- "checked", "indenterParameterTooltipsEnabled");
}
/*
\brief Tries to load the by \a filePath defined file and returns its content as TQString.
If the file could not be loaded a error dialog will be shown.
*/
TQString MainWindow::loadFile(const TQString &filePath)
{
TQFile inSrcFile(filePath);
TQString fileContent = "";
if (!inSrcFile.open(IO_ReadOnly | IO_Translate))
{
TQMessageBox::warning(nullptr, tr("Error opening file"),
tr("Cannot read the file ") + "\"" + filePath + "\".");
}
else
{
TQTextStream inSrcStream(&inSrcFile);
TQApplication::setOverrideCursor(TQt::WaitCursor);
inSrcStream.setCodec(TQTextCodec::codecForName(m_currentEncoding.ascii()));
fileContent = inSrcStream.read();
TQApplication::restoreOverrideCursor();
inSrcFile.close();
TQFileInfo fileInfo(filePath);
m_currentSourceFileExtension = fileInfo.extension(false);
int indexOfHighlighter = m_highlighter->setLexer(m_currentSourceFileExtension);
// Mark the selected highlighter in the corresponding menu
int idx = 0;
for (TQAction *action : m_highlightingActions)
{
if (idx == indexOfHighlighter)
{
action->setOn(true);
break;
}
++idx;
}
}
return fileContent;
}
/*
\brief Calls the source file open dialog to load a source file for the formatting preview.
If the file was successfully loaded, the indenter will be called to generate the formatted source code.
*/
void MainWindow::openSourceFileDialog(const TQString &fileName)
{
// If the source code file is changed and the shown dialog for saving the file
// is canceled, also stop opening another source file.
if (!maybeSave())
{
return;
}
TQString openedSourceFileContent = "";
TQString fileExtensions = tr("Supported by indenter") + " (" +
m_indentHandler->getPossibleIndenterFileExtensions() + ");;" + tr("All files") + " (*.*)";
TQString fileToOpen = fileName;
if (fileToOpen.isEmpty())
{
fileToOpen = TQFileDialog::getOpenFileName(m_currentSourceFile, fileExtensions, this, nullptr,
tr("Choose source code file"));
}
if (!fileToOpen.isEmpty())
{
m_currentSourceFile = fileToOpen;
TQFileInfo fileInfo(fileToOpen);
m_currentSourceFileExtension = fileInfo.extension(false);
openedSourceFileContent = loadFile(fileToOpen);
m_sourceFileContent = openedSourceFileContent;
if (m_toolBarWidget->cbLivePreview->isChecked())
{
callIndenter();
}
m_sourceCodeChanged = true;
m_previewToggled = true;
updateSourceView();
updateWindowTitle();
updateRecentlyOpenedList();
///-- _textEditLastScrollPos = 0;
///-- m_textEditVScrollBar->setValue(_textEditLastScrollPos);
m_savedSourceContent = openedSourceFileContent;
m_qSciSourceCodeEditor->setModified(false);
m_documentModified = false;
}
}
/*
\brief Calls the source file save as dialog to save a source file under a chosen name.
If the file already exists and it should be overwritten, a warning is shown before.
*/
bool MainWindow::saveasSourceFileDialog(TQAction *chosenEncodingAction)
{
TQString fileExtensions = tr("Supported by indenter") + " (" +
m_indentHandler->getPossibleIndenterFileExtensions() + ");;" + tr("All files") + " (*.*)";
TQString fileName = TQFileDialog::getSaveFileName(m_currentSourceFile, fileExtensions, this, nullptr,
tr("Save source code file"));
// Saving has been canceled if the filename is empty
if (fileName.isEmpty())
{
return false;
}
m_savedSourceContent = m_qSciSourceCodeEditor->text();
m_currentSourceFile = fileName;
TQFile::remove(fileName);
TQFile outSrcFile(fileName);
outSrcFile.open(IO_ReadWrite | IO_Translate);
// Get current encoding.
TQString encoding;
if (chosenEncodingAction)
{
encoding = chosenEncodingAction->text();
}
else
{
encoding = m_currentEncoding;
}
TQTextStream outSrcStrm(&outSrcFile);
outSrcStrm.setCodec(TQTextCodec::codecForName(encoding.ascii()));
outSrcStrm << m_savedSourceContent;
outSrcFile.close();
TQFileInfo fileInfo(fileName);
m_currentSourceFileExtension = fileInfo.extension(false);
m_qSciSourceCodeEditor->setModified(false);
m_documentModified = false;
updateRecentlyOpenedList();
updateWindowTitle();
return true;
}
/*
\brief Saves the currently shown source code to the last save or opened source file.
If no source file has been opened, because only the static example has been loaded,
the save as file dialog will be shown.
*/
bool MainWindow::saveSourceFile()
{
if (m_currentSourceFile.isEmpty())
{
return saveasSourceFileDialog();
}
else
{
TQFile::remove(m_currentSourceFile);
TQFile outSrcFile(m_currentSourceFile);
m_savedSourceContent = m_qSciSourceCodeEditor->text();
outSrcFile.open(IO_ReadWrite | IO_Translate);
// Get current encoding.
TQTextStream outSrcStrm(&outSrcFile);
outSrcStrm.setCodec(TQTextCodec::codecForName(m_currentEncoding.ascii()));
outSrcStrm << m_savedSourceContent;
outSrcFile.close();
m_qSciSourceCodeEditor->setModified(false);
m_documentModified = false;
}
updateWindowTitle();
return true;
}
/*
\brief Updates the displaying of the source code.
Updates the text edit field, which is showing the loaded, and if preview is enabled formatted, source code.
Reassigns the line numbers and in case of switch between preview and none preview keeps the text field
at the same line number.
*/
void MainWindow::updateSourceView()
{
///-- _textEditLastScrollPos = m_textEditVScrollBar->value();
if (m_toolBarWidget->cbLivePreview->isOn())
{
m_sourceViewContent = m_sourceFormattedContent;
}
else
{
m_sourceViewContent = m_sourceFileContent;
}
if (m_previewToggled)
{
disconnect(m_qSciSourceCodeEditor, SIGNAL(textChanged()),
this, SLOT(sourceCodeChangedHelperSlot()));
m_qSciSourceCodeEditor->setText(m_sourceViewContent);
m_previewToggled = false;
connect(m_qSciSourceCodeEditor, SIGNAL(textChanged()),
this, SLOT(sourceCodeChangedHelperSlot()));
}
///-- m_textEditVScrollBar->setValue(_textEditLastScrollPos);
}
/*
\brief Calls the selected indenter with the currently loaded source code to retrieve the formatted source code.
The original loaded source code file will not be changed.
*/
void MainWindow::callIndenter()
{
TQApplication::setOverrideCursor(TQt::WaitCursor);
m_sourceFormattedContent = m_indentHandler->callIndenter(m_sourceFileContent,
m_currentSourceFileExtension);
updateSourceView();
TQApplication::restoreOverrideCursor();
}
/*
\brief Switches the syntax highlighting corresponding to the value \a turnOn either on or off.
*/
void MainWindow::turnHighlightOnOff(bool turnOn)
{
if (turnOn)
{
m_highlighter->turnHighlightOn();
}
else
{
m_highlighter->turnHighlightOff();
}
m_previewToggled = true;
updateSourceView();
}
/*
\brief Added this slot to avoid multiple calls because of changed text.
*/
void MainWindow::sourceCodeChangedHelperSlot()
{
TQTimer::singleShot(0, this, SLOT(sourceCodeChangedSlot()));
}
/*
\brief Is emitted whenever the text inside the source view window changes. Calls the indenter
to format the changed source code.
*/
void MainWindow::sourceCodeChangedSlot()
{
///-- TQChar enteredCharacter;
///-- int cursorPos, cursorPosAbsolut, cursorLine;
///-- TQString text;
///--
///-- m_sourceCodeChanged = true;
///--
///-- // Get the content text of the text editor.
///-- m_sourceFileContent = m_qSciSourceCodeEditor->text();
///--
///-- // Get the position of the cursor in the unindented text.
///-- if (m_sourceFileContent.isEmpty())
///-- {
///-- // Add this line feed, because AStyle has problems with a totally emtpy file.
///-- m_sourceFileContent += "\n";
///-- cursorPosAbsolut = 0;
///-- cursorPos = 0;
///-- cursorLine = 0;
///-- enteredCharacter = m_sourceFileContent.at(cursorPosAbsolut);
///-- }
///-- else
///-- {
///-- m_qSciSourceCodeEditor->getCursorPosition(&cursorLine, &cursorPos);
///-- cursorPosAbsolut = m_qSciSourceCodeEditor->SendScintilla(QsciScintillaBase::SCI_GETCURRENTPOS);
///-- text = m_qSciSourceCodeEditor->text(cursorLine);
///-- if (cursorPosAbsolut > 0)
///-- {
///-- cursorPosAbsolut--;
///-- }
///-- if (cursorPos > 0)
///-- {
///-- cursorPos--;
///-- }
///-- enteredCharacter = m_sourceFileContent.at(cursorPosAbsolut);
///-- }
///--
///-- // Call the indenter to reformat the text.
///-- if (m_toolBarWidget->cbLivePreview->isChecked())
///-- {
///-- callIndenter();
///-- m_previewToggled = true;
///-- }
///--
///-- // Update the text editor.
///-- updateSourceView();
///--
///-- if (m_toolBarWidget->cbLivePreview->isChecked() && !enteredCharacter.isNull() &&
///-- enteredCharacter != 10)
///-- {
///-- //const char ch = enteredCharacter.toAscii();
///--
///-- int saveCursorLine = cursorLine;
///-- int saveCursorPos = cursorPos;
///--
///-- bool charFound = false;
///--
///-- // Search forward
///-- for (cursorLine = saveCursorLine;
///-- cursorLine - saveCursorLine < 6 && cursorLine < m_qSciSourceCodeEditor->lines();
///-- cursorLine++)
///-- {
///-- text = m_qSciSourceCodeEditor->text(cursorLine);
///-- while (cursorPos < text.count() && enteredCharacter != text.at(cursorPos))
///-- {
///-- cursorPos++;
///-- }
///-- if (cursorPos >= text.count())
///-- {
///-- cursorPos = 0;
///-- }
///-- else
///-- {
///-- charFound = true;
///-- break;
///-- }
///-- }
///--
///-- // If foward search did not find the character, search backward
///-- if (!charFound)
///-- {
///-- text = m_qSciSourceCodeEditor->text(saveCursorLine);
///-- cursorPos = saveCursorPos;
///-- if (cursorPos >= text.count())
///-- {
///-- cursorPos = text.count() - 1;
///-- }
///--
///-- for (cursorLine = saveCursorLine; saveCursorLine - cursorLine < 6 && cursorLine >= 0;
///-- cursorLine--)
///-- {
///-- text = m_qSciSourceCodeEditor->text(cursorLine);
///-- while (cursorPos >= 0 && enteredCharacter != text.at(cursorPos))
///-- {
///-- cursorPos--;
///-- }
///-- if (cursorPos < 0)
///-- {
///-- cursorPos = m_qSciSourceCodeEditor->lineLength(cursorLine - 1) - 1;
///-- }
///-- else
///-- {
///-- charFound = true;
///-- break;
///-- }
///-- }
///-- }
///--
///-- // If the character was found set its new cursor position...
///-- if (charFound)
///-- {
///-- m_qSciSourceCodeEditor->setCursorPosition(cursorLine, cursorPos + 1);
///-- }
///-- // ...if it was not found, set the previous cursor position.
///-- else
///-- {
///-- m_qSciSourceCodeEditor->setCursorPosition(saveCursorLine, saveCursorPos + 1);
///-- }
///-- }
///-- // set the previous cursor position.
///-- else if (enteredCharacter == 10)
///-- {
///-- m_qSciSourceCodeEditor->setCursorPosition(cursorLine, cursorPos);
///-- }
///--
///-- if (m_toolBarWidget->cbLivePreview->isChecked())
///-- {
///-- m_sourceCodeChanged = false;
///-- }
///--
///-- if (m_savedSourceContent == m_qSciSourceCodeEditor->text())
///-- {
///-- m_qSciSourceCodeEditor->setModified(false);
///-- m_documentModified = false;
///-- }
///-- else
///-- {
///-- m_qSciSourceCodeEditor->setModified(true); // Has no effect according to TQScintilla docs.
///-- m_documentModified = true;
///-- }
///--
///-- // Could set cursor this way and use normal linear search in text instead of columns and rows.
///-- //m_qSciSourceCodeEditor->SendScintilla(QsciScintillaBase::SCI_SETCURRENTPOS, 50);
///-- //m_qSciSourceCodeEditor->SendScintilla(QsciScintillaBase::SCI_SETANCHOR, 50);
}
/*
\brief This slot is called whenever one of the indenter settings are changed.
It calls the selected indenter if the preview is turned on. If preview
is not active, set a flag to indicate that the settings have changed.
*/
void MainWindow::indentSettingsChangedSlot()
{
m_indentSettingsChanged = true;
int cursorLine, cursorPos;
m_qSciSourceCodeEditor->getCursorPosition(&cursorLine, &cursorPos);
if (m_toolBarWidget->cbLivePreview->isChecked())
{
callIndenter();
m_previewToggled = true;
updateSourceView();
if (m_sourceCodeChanged)
{
m_sourceCodeChanged = false;
}
m_indentSettingsChanged = false;
}
else
{
updateSourceView();
}
if (m_savedSourceContent == m_qSciSourceCodeEditor->text())
{
m_qSciSourceCodeEditor->setModified(false);
m_documentModified = false;
}
else
{
m_qSciSourceCodeEditor->setModified(true); // Has no effect according to TQScintilla docs.
m_documentModified = true;
}
}
/*
\brief This slot is called whenever the preview button is turned on or off.
It calls the selected indenter to format the current source code if
the code has been changed since the last indenter call.
*/
void MainWindow::previewTurnedOnOff(bool turnOn)
{
m_previewToggled = true;
int cursorLine, cursorPos;
m_qSciSourceCodeEditor->getCursorPosition(&cursorLine, &cursorPos);
if (turnOn && (m_indentSettingsChanged || m_sourceCodeChanged))
{
callIndenter();
}
updateSourceView();
if (m_sourceCodeChanged)
{
m_sourceCodeChanged = false;
}
m_indentSettingsChanged = false;
if (m_savedSourceContent == m_qSciSourceCodeEditor->text())
{
m_qSciSourceCodeEditor->setModified(false);
m_documentModified = false;
}
else
{
m_qSciSourceCodeEditor->setModified(true);
m_documentModified = true;
}
}
/*
\brief This slot updates the main window title to show the currently opened
source code filename.
*/
void MainWindow::updateWindowTitle()
{
setCaption("UniversalIndentGUI (TQt) " + TQString(PROGRAM_VERSION_STRING) +
" [*] " + m_currentSourceFile);
}
/*
\brief Opens a dialog to save the current source code as a PDF document.
*/
void MainWindow::exportToPDF()
{
///-- TQString fileExtensions = tr("PDF Document") + " (*.pdf)";
///--
///-- TQString fileName = m_currentSourceFile;
///-- TQFileInfo fileInfo(fileName);
///-- TQString fileExtension = fileInfo.suffix();
///--
///-- fileName.replace(fileName.length() - fileExtension.length(), fileExtension.length(), "pdf");
///-- fileName = TQFileDialog::getSaveFileName(this, tr(
///-- "Export source code file"), fileName, fileExtensions);
///--
///-- if (!fileName.isEmpty())
///-- {
///-- QsciPrinter printer(TQPrinter::HighResolution);
///-- printer.setOutputFormat(TQPrinter::PdfFormat);
///-- printer.setOutputFileName(fileName);
///-- printer.printRange(m_qSciSourceCodeEditor);
///-- }
}
/*
\brief Opens a dialog to save the current source code as a HTML document.
*/
void MainWindow::exportToHTML()
{
///-- TQString fileExtensions = tr("HTML Document") + " (*.html)";
///--
///-- TQString fileName = m_currentSourceFile;
///-- TQFileInfo fileInfo(fileName);
///-- TQString fileExtension = fileInfo.suffix();
///--
///-- fileName.replace(fileName.length() - fileExtension.length(), fileExtension.length(), "html");
///-- fileName = TQFileDialog::getSaveFileName(this, tr(
///-- "Export source code file"), fileName, fileExtensions);
///--
///-- if (!fileName.isEmpty())
///-- {
///-- // Create a document from which HTML code can be generated.
///-- TQTextDocument sourceCodeDocument(m_qSciSourceCodeEditor->text());
///-- sourceCodeDocument.setDefaultFont(TQFont("Courier", 12, TQFont::Normal));
///-- TQString sourceCodeAsHTML = sourceCodeDocument.toHtml();
///-- // To ensure that empty lines are kept in the HTML code make this replacement.
///-- sourceCodeAsHTML.replace("\"></p>", "\"><br /></p>");
///--
///-- // Write the HTML file.
///-- TQFile::remove(fileName);
///-- TQFile outSrcFile(fileName);
///-- outSrcFile.open(TQFile::ReadWrite | TQFile::Text);
///-- outSrcFile.write(sourceCodeAsHTML.toAscii());
///-- outSrcFile.close();
///-- }
}
/*
\brief Loads the last opened file if this option is enabled in the settings.
If the file does not exist, the default example file is tried to be loaded.
If even that fails, a very small code example is shown.
If the setting for opening the last file is disabled, the editor is empty on startup.
*/
void MainWindow::loadLastOpenedFile()
{
// Get setting for last opened source code file.
m_loadLastSourceCodeFileOnStartup =
m_settings->getValueByName("LoadLastOpenedFileOnStartup").toBool();
// Only load last source code file if set to do so
if (m_loadLastSourceCodeFileOnStartup)
{
// From the list of last opened files get the first one.
TQString sourceFiles = m_settings->getValueByName("LastOpenedFiles").toString();
m_currentSourceFile = TQStringList::split("|", sourceFiles).first();
if (TQFile::exists(m_currentSourceFile))
{
// If source file exist load it.
TQFileInfo fileInfo(m_currentSourceFile);
m_currentSourceFile = fileInfo.absFilePath();
m_sourceFileContent = loadFile(m_currentSourceFile);
}
else if (TQFile::exists(SettingsPaths::getIndenterPath() + "/example.cpp"))
{
// If the last opened source code file does not exist, try to load the default example.cpp file.
TQFileInfo fileInfo(SettingsPaths::getIndenterPath() + "/example.cpp");
m_currentSourceFile = fileInfo.absFilePath();
m_sourceFileContent = loadFile(m_currentSourceFile);
}
else
{
// If neither the example source code file exists show some small code example.
m_currentSourceFile = "untitled.cpp";
m_currentSourceFileExtension = "cpp";
m_sourceFileContent = "if(x==\"y\"){x=z;}";
}
}
else
{
// if last opened source file should not be loaded make some default settings.
m_currentSourceFile = "untitled.cpp";
m_currentSourceFileExtension = "cpp";
m_sourceFileContent = "";
}
m_savedSourceContent = m_sourceFileContent;
// Update the mainwindow title to show the name of the loaded source code file.
updateWindowTitle();
}
/*
\brief Saves the m_settings for the main application to the file "UniversalIndentGUI.ini".
Settings are for example last selected indenter, last loaded config file and so on.
*/
void MainWindow::saveSettings()
{
m_settings->setValueByName("VersionInSettingsFile", PROGRAM_VERSION_STRING);
m_settings->setValueByName("WindowIsMaximized", isMaximized());
if (!isMaximized())
{
m_settings->setValueByName("WindowPosition", pos());
m_settings->setValueByName("WindowSize", size());
}
m_settings->setValueByName("FileEncoding", m_currentEncoding);
m_settings->setValueByName("LastOpenedFiles", m_recentlyOpenedList.join("|"));
///-- m_settings->setValueByName("MainWindowState", saveState());
// Also save the syntax highlight style for all lexers.
m_highlighter->writeCurrentSettings();
}
/*
\brief Called when the program exits. Calls the saveSettings function before really quits.
*/
void MainWindow::closeEvent(TQCloseEvent *event)
{
if (maybeSave())
{
saveSettings();
event->accept();
}
else
{
event->ignore();
}
}
/*
\brief Is called at application exit and asks whether to save the source code file,
if it has been changed.
*/
bool MainWindow::maybeSave()
{
///-- if (isWindowModified())
///-- {
///-- int ret = TQMessageBox::warning(this, tr("Modified code"), tr(
///-- "The source code has been modified.\nDo you want to save your changes?"), TQMessageBox::Yes | TQMessageBox::Default, TQMessageBox::No,
///-- TQMessageBox::Cancel | TQMessageBox::Escape);
///-- if (ret == TQMessageBox::Yes)
///-- {
///-- return saveSourceFile();
///-- }
///-- else if (ret == TQMessageBox::Cancel)
///-- {
///-- return false;
///-- }
///-- }
return true;
}
/*
\brief This slot is called whenever a language is selected in the menu. It tries to find the
corresponding action in the languageInfoList and sets the language.
*/
void MainWindow::languageChanged(int languageIndex)
{
if (languageIndex >= 0 && languageIndex < m_settings->getAvailableTranslations().size())
{
// Get the mnemonic of the new selected language.
TQString languageShort = m_settings->getAvailableTranslations()[languageIndex];
// Remove the old uigui translation.
tqApp->removeTranslator(m_uiGuiTranslator);
// Load the uigui translation file and set it for the application.
bool translationFileLoaded = m_uiGuiTranslator->load(SettingsPaths::getGlobalFilesPath() +
"/translations/universalindent_" + languageShort + ".qm");
if (translationFileLoaded)
{
tqApp->installTranslator(m_uiGuiTranslator);
}
}
}
/*
\brief Creates menu entries in the file menu for opening and saving a file with different encodings.
*/
void MainWindow::createEncodingMenu()
{
TQStringList encodingsList;
encodingsList << "UTF-8" << "ISO-10646-UCS-2" << "Apple Roman" << "Big5" << "Big5-HKSCS" << "CP 874" <<
"EUC-JP" << "EUC-KR" << "GB18030-0" << "IBM 850" << "IBM 866" << "ISO 2022-JP" <<
"ISO 8859-1" << "ISO 8859-13" << "Iscii-Bng" << "KOI8-R" << "KOI8-U" << "MuleLao-1" <<
"ROMAN8" << "Shift-JIS" << "TIS-620" << "TSCII" << "Windows-1250" << "WINSAMI2";
m_encodingActionGroup = new TQActionGroup(this);
m_saveEncodedActionGroup = new TQActionGroup(this);
// Loop for each available encoding
for (const TQString &encodingName : encodingsList)
{
// Create actions for the "reopen" menu
TQAction *encodingAction = new TQAction(m_encodingActionGroup);
encodingAction->setText(encodingName);
encodingAction->setStatusTip(tr(
"Reopen the currently opened source code file by using the text encoding scheme ") +
encodingName);
encodingAction->setToggleAction(true);
if (encodingName == m_currentEncoding)
{
encodingAction->setOn(true);
}
m_openEncodingActions.append(encodingAction);
// Create actions for the "save as encoded" menu
encodingAction = new TQAction(m_saveEncodedActionGroup);
encodingAction->setText(encodingName);
encodingAction->setStatusTip(tr(
"Save the currently opened source code file by using the text encoding scheme ") +
encodingName);
encodingAction->setToggleAction(true);
m_saveEncodingActions.append(encodingAction);
}
m_encodingActionGroup->addTo(popupMenuEncoding);
connect(m_encodingActionGroup, SIGNAL(selected(TQAction*)),
this, SLOT(encodingChanged(TQAction*)));
m_saveEncodedActionGroup->addTo(popupMenuSaveEncoded);
connect(m_saveEncodedActionGroup, SIGNAL(selected(TQAction*)),
this, SLOT(saveAsOtherEncoding(TQAction*)));
}
/*
\brief This slot calls the save dialog to save the current source file with another encoding.
If the saving is successful and not aborted, the currently used encoding, visible in the
"reopen" menu, is also changed to the new encoding.
*/
void MainWindow::saveAsOtherEncoding(TQAction *chosenEncodingAction)
{
bool fileWasSaved = saveasSourceFileDialog(chosenEncodingAction);
// If the file was save with another encoding, change the selected encoding in the reopen menu.
if (fileWasSaved)
{
for (TQAction *action : m_openEncodingActions)
{
if (action->text() == chosenEncodingAction->text())
{
action->setOn(true);
return;
}
}
}
}
/*
\brief This slot is called whenever an encoding is selected in the settings menu.
*/
void MainWindow::encodingChanged(TQAction *encodingAction)
{
m_currentEncoding = encodingAction ? encodingAction->text() : TQString::null;
if (maybeSave())
{
TQFile inSrcFile(m_currentSourceFile);
TQString fileContent = "";
if (!inSrcFile.open(IO_ReadOnly | IO_Translate))
{
TQMessageBox::warning(NULL, tr("Error opening file"), tr(
"Cannot read the file ") + "\"" + m_currentSourceFile + "\".");
}
else
{
TQTextStream inSrcStrm(&inSrcFile);
TQApplication::setOverrideCursor(TQt::WaitCursor);
TQString encodingName = encodingAction->text();
m_currentEncoding = encodingName;
inSrcStrm.setCodec(TQTextCodec::codecForName(encodingName.ascii()));
fileContent = inSrcStrm.read();
TQApplication::restoreOverrideCursor();
inSrcFile.close();
m_qSciSourceCodeEditor->setText(fileContent);
m_qSciSourceCodeEditor->setModified(false);
}
}
}
/*
\brief Creates a menu entry under the settings menu for all available text encodings.
*/
void MainWindow::createHighlighterMenu()
{
m_highlighterActionGroup = new TQActionGroup(this);
// Loop for each known highlighter
for (const TQString &highlighterName : m_highlighter->getAvailableHighlighters())
{
TQAction *highlighterAction = new TQAction(m_highlighterActionGroup);
highlighterAction->setText(highlighterName);
highlighterAction->setStatusTip(tr("Set the syntax highlighting to ") + highlighterName);
highlighterAction->setToggleAction(true);
m_highlightingActions.append(highlighterAction);
}
m_highlighterActionGroup->addTo(popupMenuHighlighter);
connect(m_highlighterActionGroup , SIGNAL(selected(TQAction*)),
m_highlighter, SLOT(setHighlighterByAction(TQAction*)));
}
/*
\brief Is called whenever the white space visibility is being changed in the menu.
*/
void MainWindow::setWhiteSpaceVisibility(bool visible)
{
if (m_qSciSourceCodeEditor)
{
if (visible)
{
m_qSciSourceCodeEditor->setWhitespaceVisibility(TQextScintilla::WsVisible);
}
else
{
m_qSciSourceCodeEditor->setWhitespaceVisibility(TQextScintilla::WsInvisible);
}
}
}
/*
\brief Is called whenever the tooltip visibility is being changed in the settings.
*/
void MainWindow::setIndenterParameterTooltips(bool enabled)
{
TQToolTip::setGloballyEnabled(enabled);
}
/*
\brief This slot is called whenever the number of lines in the editor changes
and adapts the margin for the displayed line numbers.
*/
void MainWindow::numberOfLinesChanged()
{
int lines = m_qSciSourceCodeEditor->lines();
if (lines != m_oldLinesNumber)
{
m_oldLinesNumber = lines;
TQString lineNumbers;
lineNumbers.setNum(lines * 10);
m_qSciSourceCodeEditor->setMarginWidth(1, lineNumbers);
}
}
///-- /*
///-- \brief Catches language change events and retranslates all needed widgets.
///-- */
///-- void MainWindow::changeEvent(TQEvent *event)
///-- {
///-- int i = 0;
///--
///-- if (event->type() == TQEvent::LanguageChange)
///-- {
///-- TQString languageName;
///--
///-- // Translate the main window.
///-- _mainWindowForm->retranslateUi(this);
///-- updateWindowTitle();
///--
///-- // Translate the toolbar.
///-- _toolBarWidget->retranslateUi(_mainWindowForm->toolBar);
///--
///-- // Translate the load encoding menu.
///-- TQList<TQAction*> encodingActionList = m_encodingActionGroup->actions();
///-- for (i = 0; i < encodingActionList.size(); i++)
///-- {
///-- encodingActionList.at(i)->setStatusTip(tr(
///-- "Reopen the currently opened source code file by using the text encoding scheme ") + m_encodingsList.at(
///-- i));
///-- }
///--
///-- // Translate the save encoding menu.
///-- encodingActionList = m_saveEncodedActionGroup->actions();
///-- for (i = 0; i < encodingActionList.size(); i++)
///-- {
///-- encodingActionList.at(i)->setStatusTip(tr(
///-- "Save the currently opened source code file by using the text encoding scheme ") + m_encodingsList.at(
///-- i));
///-- }
///--
///-- // Translate the _highlighter menu.
///-- TQList<TQAction*> actionList = _mainWindowForm->popupMenuHighlighter->actions();
///-- i = 0;
///-- foreach(TQString highlighterName, _highlighter->getAvailableHighlighters())
///-- {
///-- TQAction *highlighterAction = actionList.at(i);
///-- highlighterAction->setStatusTip(tr("Set the syntax highlighting to ") + highlighterName);
///-- i++;
///-- }
///--
///-- // Translate the line and column indicators in the statusbar.
///-- int line, column;
///-- m_qSciSourceCodeEditor->getCursorPosition(&line, &column);
///-- setStatusBarCursorPosInfo(line, column);
///-- }
///-- else
///-- {
///-- TQWidget::changeEvent(event);
///-- }
///-- }
/*
\brief Initialize the list of recently opened files and
the menu using the saved settings.
*/
void MainWindow::initRecentlyOpenedList()
{
m_recentlyOpenedListMaxSize = m_settings->getValueByName("RecentlyOpenedListSize").toInt();
TQString lastOpenedFilesString = m_settings->getValueByName("LastOpenedFiles").toString();
TQStringList recentlyOpenedList = TQStringList::split("|", lastOpenedFilesString);
// Append only existing files and as long as the max limit has not been reached
int index = 0;
for (const TQString &file : recentlyOpenedList)
{
TQFileInfo fileInfo(file);
if (fileInfo.exists())
{
if (index < m_recentlyOpenedListMaxSize)
{
m_recentlyOpenedList.append(file);
int id = popupMenuRecentlyOpenedFiles->insertItem(fileInfo.fileName(), -1, index);
popupMenuRecentlyOpenedFiles->setWhatsThis(id, file);
++index;
}
else
{
break;
}
}
}
// Enable or disable "actionClearRecentlyOpenedList"
actionClearRecentlyOpenedList->setEnabled(!m_recentlyOpenedList.isEmpty());
}
/*
\brief Updates the list of recently opened files.
The currently open file is set at the top of the list.
Files in excess of maximum list length will be discarded.
The new list will be updated into the m_settings object and
the recently opened menu will be updated too.
*/
void MainWindow::updateRecentlyOpenedList()
{
// Make sure to read the currnt max size settings
m_recentlyOpenedListMaxSize = m_settings->getValueByName("RecentlyOpenedListSize").toInt();
TQString fileName;
TQString filePath;
// Check if the currently open file is in the list of recently opened.
int currentFileIndex = m_recentlyOpenedList.findIndex(m_currentSourceFile);
if (!m_currentSourceFile.isEmpty())
{
// If it is in the list of recently opened files and not at the first position,
// move it to the first pos.
if (currentFileIndex > 0)
{
TQStringList::iterator currentFileIt = m_recentlyOpenedList.find(m_currentSourceFile);
m_recentlyOpenedList.remove(currentFileIt);
m_recentlyOpenedList.prepend(m_currentSourceFile);
popupMenuRecentlyOpenedFiles->removeItemAt(currentFileIndex);
int id = popupMenuRecentlyOpenedFiles->insertItem(TQFileInfo(m_currentSourceFile).fileName(),
-1, 0);
popupMenuRecentlyOpenedFiles->setWhatsThis(id, m_currentSourceFile);
}
// Put the current file at the first position if it was not in the list
else if (currentFileIndex == -1)
{
m_recentlyOpenedList.prepend(m_currentSourceFile);
int id = popupMenuRecentlyOpenedFiles->insertItem(TQFileInfo(m_currentSourceFile).fileName(),
-1, 0);
popupMenuRecentlyOpenedFiles->setWhatsThis(id, m_currentSourceFile);
}
}
// Trim excessive elements if the size has shrinked
while (m_recentlyOpenedList.size() > m_recentlyOpenedListMaxSize)
{
m_recentlyOpenedList.pop_back();
popupMenuRecentlyOpenedFiles->removeItemAt(m_recentlyOpenedListMaxSize);
}
// Enable or disable "actionClearRecentlyOpenedList"
actionClearRecentlyOpenedList->setEnabled(!m_recentlyOpenedList.isEmpty());
}
/*
\brief This slot empties the list of recently opened files.
*/
void MainWindow::clearRecentlyOpenedList()
{
int numItems = m_recentlyOpenedList.size();
m_recentlyOpenedList.clear();
for (int i = 0; i < numItems; ++i)
{
popupMenuRecentlyOpenedFiles->removeItemAt(0);
}
// Disable "actionClearRecentlyOpenedList"
actionClearRecentlyOpenedList->setEnabled(false);
}
/*
\brief When a recent file action is highlighted, set the full path
in the status bar
*/
void MainWindow::recentlyOpenedFileHighlighted(int recentlyOpenedActionId)
{
statusBar()->message(popupMenuRecentlyOpenedFiles->whatsThis(recentlyOpenedActionId));
}
/*
\brief This slot is called if an entry from the list of recently opened files is
being selected.
*/
void MainWindow::openFileFromRecentlyOpenedList(int recentlyOpenedActionId)
{
// If the selected action from the recently opened list menu is the clear action
// call the slot to clear the list and then leave.
if (recentlyOpenedActionId == m_actionClearRecentlyOpenedListId)
{
clearRecentlyOpenedList();
return;
}
TQString filePath = popupMenuRecentlyOpenedFiles->whatsThis(recentlyOpenedActionId);
TQFileInfo fileInfo(filePath);
if (fileInfo.exists())
{
// If the file exists, open it.
openSourceFileDialog(filePath);
}
else
{
// If it does not exist, show a warning message and update the list of recently opened files.
TQMessageBox::warning(this, tr("File no longer exists"),
tr("The file %1 no longer exists.").arg(filePath));
int fileIndex = m_recentlyOpenedList.findIndex(filePath);
if (fileIndex >= 0)
{
TQStringList::iterator fileIt = m_recentlyOpenedList.find(filePath);
m_recentlyOpenedList.remove(fileIt);
popupMenuRecentlyOpenedFiles->removeItemAt(fileIndex);
// Enable or disable "actionClearRecentlyOpenedList"
actionClearRecentlyOpenedList->setEnabled(!m_recentlyOpenedList.isEmpty());
}
}
}
/*
\brief If the dragged in object contains urls/paths to a file, accept the drag.
*/
void MainWindow::dragEnterEvent(TQDragEnterEvent *event)
{
event->accept(TQUriDrag::canDecode(event));
}
/*
\brief If the dropped in object contains urls/paths to a file, open that file.
*/
void MainWindow::dropEvent(TQDropEvent *event)
{
TQStringList droppedFileNames;
if (TQUriDrag::decodeLocalFiles(event, droppedFileNames))
{
openSourceFileDialog(droppedFileNames[0]);
}
}
/*
\brief Show the About dialog.
*/
void MainWindow::showAboutDialog()
{
//TQPixmap originalPixmap = TQPixmap::grabWindow(TQApplication::desktop()->screen()->winId());
//tqDebug("in main pixmap width %d, numScreens = %d", originalPixmap.size().width(),
// TQApplication::desktop()->availableGeometry().width());
//_aboutDialogGraphicsView->setScreenshotPixmap( originalPixmap );
//----_aboutDialogGraphicsView->show();
m_aboutDialog->show();
}
/*
\brief Sets the label in the status bar to show the \a line and \a column number.
*/
void MainWindow::setStatusBarCursorPosInfo(int line, int column)
{
m_textEditLineColumnInfoLabel->setText(tr("Line %1, Column %2").arg(line + 1).arg(column + 1));
}
#include "MainWindow.moc"
|