writeas-gtk/src/window.vala

68 lines
2.2 KiB
Vala
Raw Normal View History

2018-04-16 22:42:30 +00:00
public class WriteAs.MainWindow : Gtk.ApplicationWindow {
private Gtk.TextView canvas;
2018-04-17 00:21:28 +00:00
private bool dark_mode = false;
2018-04-16 22:42:30 +00:00
construct {
construct_toolbar();
2018-04-16 22:42:30 +00:00
canvas = new Gtk.TextView();
2018-04-17 00:47:07 +00:00
canvas.margin = 20;
2018-04-16 22:42:30 +00:00
add(canvas);
}
public MainWindow(Gtk.Application app) {
set_application(app);
2018-04-16 22:48:06 +00:00
set_default_size(800, 600);
2018-04-16 22:42:30 +00:00
}
private void construct_toolbar() {
var header = new Gtk.HeaderBar();
header.title = "";
header.show_close_button = true;
set_titlebar(header);
var darkmode_button = new Gtk.ToggleButton();
// NOTE the fallback icon is a bit of a meaning stretch, but it works.
var icon_theme = Gtk.IconTheme.get_default();
darkmode_button.image = new Gtk.Image.from_icon_name(
icon_theme.has_icon("writeas-bright-dark") ?
"writeas-bright-dark" : "weather-clear-night",
Gtk.IconSize.SMALL_TOOLBAR);
darkmode_button.draw_indicator = false;
var settings = Gtk.Settings.get_default();
darkmode_button.toggled.connect(() => {
settings.gtk_application_prefer_dark_theme = darkmode_button.active;
2018-04-17 00:21:28 +00:00
dark_mode = darkmode_button.active;
adjust_text_style();
});
header.pack_end(darkmode_button);
}
2018-04-17 00:21:28 +00:00
private Gtk.CssProvider cur_styles = null;
private void adjust_text_style() {
try {
var styles = canvas.get_style_context();
if (cur_styles != null) styles.remove_provider(cur_styles);
var css = "";
if (dark_mode) {
// Try to detect whether the system provided a better dark mode.
var text_color = styles.get_color(Gtk.StateFlags.ACTIVE);
double h, s, v;
Gtk.rgb_to_hsv(text_color.red, text_color.green, text_color.blue,
out h, out s, out v);
if (v < 0.5) css = "* {background: black; color: white;}";
2018-04-17 00:21:28 +00:00
}
cur_styles = new Gtk.CssProvider();
cur_styles.load_from_data(css);
styles.add_provider(cur_styles, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION);
} catch (Error e) {
warning(e.message);
}
}
2018-04-16 22:42:30 +00:00
}