C-- app updates
WebView 1.8b: - key scroll by up and down lists 12 pixels instead of 1 - open app with param when href="" contains '|' symbol, example: href="/sys/tmpdisk|a0" Eolite 3.96b: - fix sorting - an option to highlight odd lines - copy path to clipboard by clicking on path bar - rewrite the code related to device an folder update: so this change removed unnecessary refreshes - add refresh when /kolibrios mounted IconEdit 0.57b: - improve color gradient block - press Delete key when smth selected fill selection by color2 and resents selection - impove window appearance when the dark skin is set - fix a stupid but issue which made impossible to open non-square images - fix an issue that wrong zoom number displayed Notes 0.8: - reworking, work in progress - delete binary Sysmon 0.87: - minor visible improvement in progress bars TmpDisk 0.67a: - deny users to shoot in the foot: show forbid message on /tmp0 deletion git-svn-id: svn://kolibrios.org@7422 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
@@ -81,6 +81,29 @@ PathShow_prepare stdcall(#PathShow);
|
||||
PathShow_draw stdcall(#PathShow);
|
||||
*/
|
||||
|
||||
//editbox flags
|
||||
#define ed_pass 1b
|
||||
#define ed_focus 10b //focused
|
||||
#define ed_shift 100b //flag is set when Shift is pressed
|
||||
#define ed_shift_on 1000b
|
||||
#define ed_shift_bac 10000b //bif for Shift reset, if set the smth is selected
|
||||
#define ed_left_fl 100000b
|
||||
#define ed_offset_fl 1000000b
|
||||
#define ed_insert 10000000b
|
||||
#define ed_mouse_on 100000000b
|
||||
#define ed_mous_adn_b 100011000b
|
||||
#define ed_always_focus 100000000000000b
|
||||
#define ed_figure_only 1000000000000000b //symbols only
|
||||
#define ed_shift_cl 1111111111100011b
|
||||
#define ed_shift_mcl 1111111111111011b
|
||||
#define ed_shift_off 1111111111111011b
|
||||
#define ed_shift_on_off 1111111111110111b
|
||||
#define ed_shift_bac_cl 1111111111101111b
|
||||
#define ed_right_fl 1111111111011111b
|
||||
#define ed_offset_cl 1111111110111111b
|
||||
#define ed_insert_cl 1111111101111111b
|
||||
#define ed_mouse_on_off 1111111011111111b
|
||||
|
||||
struct edit_box{
|
||||
dword width,
|
||||
left,
|
||||
|
Reference in New Issue
Block a user