mirror of https://github.com/buggins/dlangui.git
Merge pull request #585 from r4j4h/close-tab-on-midddle-mouse-click
Added functionality to close tabs with middle mouse click
This commit is contained in:
commit
edb42f5008
|
@ -589,20 +589,27 @@ class TabControl : WidgetGroupDefaultDrawing {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected bool onMouse(Widget source, MouseEvent event) {
|
protected bool onMouse(Widget source, MouseEvent event) {
|
||||||
if (event.action == MouseAction.ButtonDown && event.button == MouseButton.Left) {
|
if (event.action == MouseAction.ButtonDown ) {
|
||||||
if (source.compareId("MORE")) {
|
if (event.button == MouseButton.Left) {
|
||||||
Log.d("tab MORE button pressed");
|
if (source.compareId("MORE")) {
|
||||||
if (handleMorePopupMenu())
|
Log.d("tab MORE button pressed");
|
||||||
|
if (handleMorePopupMenu())
|
||||||
|
return true;
|
||||||
|
if (moreButtonClick.assigned) {
|
||||||
|
moreButtonClick(this);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
if (moreButtonClick.assigned) {
|
|
||||||
moreButtonClick(this);
|
|
||||||
}
|
}
|
||||||
return true;
|
string id = source.id;
|
||||||
}
|
int index = tabIndex(id);
|
||||||
string id = source.id;
|
if (index >= 0) {
|
||||||
int index = tabIndex(id);
|
selectTab(index, true);
|
||||||
if (index >= 0) {
|
}
|
||||||
selectTab(index, true);
|
} else if (event.button == MouseButton.Middle) {
|
||||||
|
bool closeButtonEnabled = (cast(TabItemWidget)source)._enableCloseButton;
|
||||||
|
if ( closeButtonEnabled ) {
|
||||||
|
tabClose(source.id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue