mirror of
https://github.com/gnosygnu/xowa.git
synced 2026-03-02 03:49:30 +00:00
Gui: Toggle nightmode for dropdown list
This commit is contained in:
@@ -31,5 +31,7 @@ public interface GxwComboBox extends GxwElem {
|
||||
void Items__size_to_fit(int count);
|
||||
void Items__visible_rows_(int v);
|
||||
void Items__jump_len_(int v);
|
||||
void Items__backcolor_(ColorAdp v);
|
||||
void Items__forecolor_(ColorAdp v);
|
||||
void Margins_set(int left, int top, int right, int bot);
|
||||
}
|
||||
|
||||
@@ -35,6 +35,8 @@ public class GxwComboBox_lang extends JComboBox implements GxwComboBox, GxwElem,
|
||||
*/
|
||||
}
|
||||
public ColorAdp Border_color() {return border_color;} public void Border_color_(ColorAdp v) {border_color = v;} private ColorAdp border_color;
|
||||
public void Items__backcolor_(ColorAdp v) {}
|
||||
public void Items__forecolor_(ColorAdp v) {}
|
||||
public int SelBgn() {return -1;} public void SelBgn_set(int v) {}
|
||||
public int SelLen() {return 0;} public void SelLen_set(int v) {}
|
||||
public void Sel_(int bgn, int end) {}
|
||||
|
||||
@@ -76,6 +76,8 @@ class MockComboBox extends GxwElem_mock_base implements GxwComboBox {
|
||||
public void Items__size_to_fit(int count) {}
|
||||
public void Items__visible_rows_(int v) {}
|
||||
public void Items__jump_len_(int v) {}
|
||||
public void Items__backcolor_(ColorAdp v) {}
|
||||
public void Items__forecolor_(ColorAdp v) {}
|
||||
public void Margins_set(int left, int top, int right, int bot) {}
|
||||
public Object SelectedItm() {return selectedItm;} public void SelectedItm_set(Object v) {this.selectedItm = v;} Object selectedItm;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user