Subversion Repositories Kolibri OS

Rev

Rev 7945 | Rev 8439 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7945 Rev 7960
Line 11... Line 11...
11
char intro[] = "â® ¯à®á⮩ ¯à®á¬®âà騪 ⥪áâ .
11
char intro[] = "â® ¯à®á⮩ ¯à®á¬®âà騪 ⥪áâ .
12
®¯à®¡ã©â¥ ®âªàëâì ⥪áâ®¢ë© ä ©«.";
12
®¯à®¡ã©â¥ ®âªàëâì ⥪áâ®¢ë© ä ©«.";
Line 13... Line 13...
13
 
13
 
Line 14... Line 14...
14
char copied_chars[] = "‘ª®¯¨à®¢ ­® ᨢ®«®¢: %i";
14
char copied_chars[] = "‘ª®¯¨à®¢ ­® ᨢ®«®¢: %i";
15
 
15
 
16
char about[] = "Quark Text v0.72
16
char about[] = "Quark Text v0.8
Line 17... Line 17...
17
€¢â®à: Š¨à¨«« ‹¨¯ â®¢ aka Leency
17
€¢â®à: Š¨à¨«« ‹¨¯ â®¢ aka Leency
18
‘ ©â: http://aspero.pro
18
‘ ©â: http://aspero.pro
Line 50... Line 50...
50
char intro[] = "Quark is a simple text viewer.
50
char intro[] = "Quark is a simple text viewer.
51
Try to open some text file.";
51
Try to open some text file.";
Line 52... Line 52...
52
 
52
 
Line 53... Line 53...
53
char copied_chars[] = "Copied %i chars";
53
char copied_chars[] = "Copied %i chars";
54
 
54
 
55
char about[] = "Quark Text v0.72
55
char about[] = "Quark Text v0.8
Line 56... Line 56...
56
Author: Kiril Lipatov aka Leency 
56
Author: Kiril Lipatov aka Leency 
57
Website: http://aspero.pro
57
Website: http://aspero.pro
Line 92... Line 92...
92
//                                                   //
92
//                                                   //
93
//===================================================//
93
//===================================================//
Line 94... Line 94...
94
 
94
 
95
dword color_schemes[] = {
95
dword color_schemes[] = {
96
//bg,     text,     scroll,   selected, cursor
96
//bg,     text,     scroll,   selected, cursor
97
0xFCF0DA, 0x171501, 0xB2ACA0, 0xD8CAA7, 0xFF0000, //Dairy
97
0xFCF0DA, 0x171501, 0xB2ACA0, 0xD8CAA7, 0xFF0000, 0xFEC53A, //Dairy
98
0x282923, 0xD8D8D2, 0x555551, 0x5A574A, 0xFFFfff  //Cosmos
98
0x282923, 0xD8D8D2, 0x555551, 0x5A574A, 0xFFFfff, 0x9D7E00 //Cosmos
Line 99... Line 99...
99
};
99
};
100
 
100
 
101
struct THEME
101
struct THEME
102
{
102
{
Line 103... Line 103...
103
	dword bg, text, cursor;
103
	dword bg, text, cursor, found;
104
} theme;
104
} theme;