50 Commits

Author SHA1 Message Date
Jinhao
ca1fce932a minor changes 2016-04-12 22:17:07 +08:00
Jinhao
07b5b19545 improve stability of event 2016-04-10 15:23:44 +08:00
Jinhao
b063ce53fb fix bug that ignored API::update_window in drawer event. 2016-03-29 00:08:43 +08:00
Jinhao
569eb49a5c fix and improve the internal handle of focus change
enhanced textbox behavior of focus change
2016-02-27 02:02:29 +08:00
Jinhao
9bb0e8eb34 fix an issue of child root window(nested_form) 2015-12-22 00:41:58 +08:00
Jinhao
75800b2e78 fix a crash when setting focus if prev is null 2015-12-20 03:00:33 +08:00
Jinhao
1446849454 fix non-popup root window(nested_form) issues 2015-12-18 01:00:33 +08:00
qPCR4vir
221e9f6624 FIX MinGW workaround bring some macro small ? 2015-12-03 20:23:44 +01:00
Jinhao
94c10c8fba Merge branch 'macos' of https://github.com/BenjaminNavarro/nana into BenjaminNavarro-macos 2015-11-10 23:21:07 +08:00
Jinhao
fb3b1d51d4 code review 2015-10-22 00:02:27 +08:00
Jinhao
a9983101ab avoid double-copying a window while its parent is refreshing 2015-10-13 23:11:57 +08:00
Jinhao
1b5aed2e5f code reviews 2015-10-13 01:38:53 +08:00
Benjamin Navarro
a09d5c3c95 Mac OS X support 2015-10-11 18:31:30 +02:00
Jinhao
460490040e improve dockable place
add a new API::at_safe_place()
2015-09-20 23:21:44 +08:00
Jinhao
9384baace4 fix a crash caused by calling inner_widget_notifier's destroy twice 2015-08-27 01:40:18 +08:00
Jinhao
ff7a1f9510 fix a crash
a crash caused by a splitbar would be created by place when the window is
destorying; add some checks whether the parent is destorying in create
widget functions
2015-08-08 08:25:55 +08:00
Jinhao
71f7a9f8ac update transparent background when the widget is moving 2015-08-06 02:05:15 +08:00
Jinhao
e0ee42d184 merge beru's changes 2015-08-02 03:33:43 +08:00
Jinhao
7d868f2377 Merge branch 'develop' of https://github.com/beru/nana into beru-develop
Conflicts:
	source/gui/widgets/skeletons/text_editor.cpp
	source/gui/widgets/textbox.cpp
	source/paint/detail/image_bmp.hpp
	source/paint/detail/image_ico.hpp
2015-08-01 22:08:06 +08:00
Jinhao
e47d8504ea fix an issue of button(#67) 2015-07-22 01:05:52 +08:00
Jinhao
d8a964d8f0 remove deprecated code 2015-07-20 22:57:22 +08:00
Jinhao
b1ed1f0452 Merge branch 'hotfixes-1.0.2' into develop
Conflicts:
	include/nana/gui/detail/basic_window.hpp
	include/nana/gui/widgets/listbox.hpp
	source/gui/detail/linux_X11/bedrock.cpp
	source/gui/detail/win32/bedrock.cpp
	source/gui/detail/window_layout.cpp
	source/gui/detail/window_manager.cpp
	source/gui/widgets/listbox.cpp
	source/gui/widgets/toolbar.cpp
2015-07-11 13:35:22 +08:00
Jinhao
0d14620052 fix caret/keyboard issue(#62)
pressing space on a button will trigger click event
2015-07-05 16:21:13 +08:00
Jinhao
8be566214c fix a caret issue which happens when parent widget is hidden 2015-06-26 23:59:28 +08:00
Jinhao
d528b5c94d fix an issue that caret doesn't move when moving the parent widget. 2015-06-23 00:11:47 +08:00
Jinhao
bdf928a9e8 fix an infinit loop issue when pressing tab key if all tabstop widgets are
invisible
2015-06-22 23:00:48 +08:00
Jinhao
1bb9a09a8a develop inline widgets for listbox 2015-06-21 04:44:49 +08:00
Jinhao
7dae086162 fix caret and tab switch on invisible widgets(#62) 2015-06-15 22:31:03 +08:00
Jinhao
1822fafd79 construct the inline widget for listbox 2015-06-14 21:48:35 +08:00
Jinhao
e8ae11e208 fix a refreshing issue
bad refreshing when a lite_widget is destroying if the lite_widget's
parent is also a type of lite_widget
2015-06-10 06:53:58 +08:00
beru
ff198063ce Merge branch 'develop' of https://github.com/cnjinhao/nana into develop 2015-05-25 02:49:28 +09:00
Jinhao
e04b0749e0 remove the internal signal manager of window_manager 2015-05-25 01:19:35 +08:00
beru
2776365fdf Merge branch 'develop' of https://github.com/cnjinhao/nana into develop 2015-05-24 14:38:58 +09:00
Jinhao
8515fff8d0 stop changing focus when dbl clicks on form/panel background 2015-05-20 02:26:39 +08:00
beru
4289446216 Merge branch 'develop' of https://github.com/cnjinhao/nana into develop 2015-05-17 15:05:44 +09:00
Jinhao
aac94e238b input widgets keep focus when form/panel is clicked
see API::ignore_mouse_focus
2015-05-17 09:47:58 +08:00
beru
990de7867b add OFN_NOCHANGEDIR flag to OPENFILENAME::Flags in nana::filebox::show
http://blogs.msdn.com/b/oldnewthing/archive/2010/11/12/10089878.aspx
	setting OFN_NOCHANGEDIR flag to OPENFILENAME::Flags is effective for GetOpenFileName API on Windows7.
add const qualifier to nana::paint::graphics::save_as_file
add support for small icon on Windows.
	The system displays the large icon in the ALT+TAB dialog box, and the small icon in the window caption.
	https://msdn.microsoft.com/en-us/library/windows/desktop/ms632643%28v=vs.85%29.aspx
2015-05-16 21:10:20 +09:00
Jinhao
e449cd5a24 fix a weird behavior of textbox(#52)
and some other GCC compiling errors
2015-05-03 16:59:22 +08:00
Jinhao
a64354900c fix a crash that caused by double-delete of a event handler 2015-05-01 16:29:51 +08:00
Jinhao
3c4f8ae6d9 fix menubar behavior issue
no key_press and key_release after destroying caret under X11
missing some key_press events
menu text color issue
2015-04-21 22:33:18 +08:00
Jinhao
f11e5efe80 fix the issue of restoring focus(#37) 2015-04-15 22:36:24 +08:00
cnjinhao
274155b1da improve the spinbox and inputbox
improve the input check for spinbox
add a verifier to check user input for inputbox
2015-02-07 11:47:45 +08:00
cnjinhao
fd5ff571a7 get ready for Linux 2015-02-04 10:26:08 +08:00
cnjinhao
60474150f5 Merge branch 'feature-draw-through' into develop 2015-02-02 19:17:44 +08:00
cnjinhao
4ff3a6afd5 Add the new spinbox widget 2015-01-22 06:19:24 +08:00
cnjinhao
7b30855976 Improved processing of edge nimbus effect 2015-01-15 07:20:02 +08:00
cnjinhao
f67dbdb14b draw-through
it is possible to render with OpenGL/DX by using draw-through.
2015-01-12 09:39:28 +08:00
cnjinhao
9a71f23ddd Performance improvements 2015-01-09 08:12:20 +08:00
cnjinhao
ecbf71b7e2 Color Schemes
textbox.scheme().selection = color(colors::red);
Set the text selection background color
2014-12-28 17:16:52 +08:00
cnjinhao
d0a317bd45 first init of 0.9 2014-12-11 03:32:35 +08:00