123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 |
- ####################################
- # #
- # COPYRIGHT NOTICE #
- # #
- # This file is a part of Victori- #
- # ous Children Studio Organizer. #
- # Or simply VCStudio. Copyright #
- # of J.Y.Amihud. But don't be sad #
- # because I released the entire #
- # project under a GNU GPL license. #
- # You may use Version 3 or later. #
- # See www.gnu.org/licenses if your #
- # copy has no License file. Please #
- # note. Ones I used the GPL v2 for #
- # it. It's no longer the case. #
- # #
- ####################################
- import os
- # GTK module ( Graphical interface
- import gi
- gi.require_version('Gtk', '3.0')
- from gi.repository import Gtk
- from gi.repository import GLib
- from gi.repository import Gdk
- import cairo
- # Own modules
- from settings import settings
- from settings import talk
- from project_manager import pm_project
- #UI modules
- from UI import UI_elements
- from UI import UI_color
- def layer(win):
-
- # Making the layer
- surface = cairo.ImageSurface(cairo.FORMAT_ARGB32, win.current['w'],
- win.current['h'])
- layer = cairo.Context(surface)
-
-
- #text setting
- layer.select_font_face("Monospace", cairo.FONT_SLANT_NORMAL, cairo.FONT_WEIGHT_NORMAL)
-
- UI_color.set(layer, win, "dark_overdrop")
- layer.rectangle(
- 0,
- 0,
- win.current["w"],
- win.current["h"],
- )
- layer.fill()
-
-
- UI_color.set(layer, win, "node_background")
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-250,
- 100,
- 500,
- win.current["h"]-200,
- 10)
-
- # Exit button
- def do():
- win.url = "project_manager"
- win.textactive = ""
-
-
- UI_elements.roundrect(layer, win,
- win.current["w"]/2+210,
- win.current["h"]-140,
- 40,
- 40,
- 10,
- button=do,
- icon="cancel",
- tip=talk.text("cancel"))
-
-
-
- # Clipping everything
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-250,
- 100,
- 500,
- win.current["h"]-260,
- 10,
- fill=False)
- layer.clip()
-
- clip = [
- win.current["w"]/2-250,
- 100,
- 500,
- win.current["h"]-260]
-
- # Setting up the scroll
- if "pm_settings" not in win.scroll:
- win.scroll["pm_settings"] = 0
-
- current_Y = 0 # The max scroll value
-
- # Username
-
- UI_elements.image(layer, win, "settings/themes/"\
- +win.settings["Theme"]+"/icons/user.png",
- win.current["w"]/2-240,
- 110 + current_Y + win.scroll["pm_settings"],
- 40,
- 40)
-
- UI_elements.text(layer, win, "Username_setting",
- win.current["w"]/2-190,
- 110 + current_Y + win.scroll["pm_settings"],
- 420,
- 40,
- set_text=win.settings["Username"],
- tip=talk.text("username"))
-
- if win.text["Username_setting"]["text"] != win.settings["Username"]:
- def do():
- win.settings["Username"] = win.text["Username_setting"]["text"]
- settings.write("Username", win.settings["Username"])
-
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-240+430,
- 110 + current_Y + win.scroll["pm_settings"],
- 40,
- 40,
- 10,
- button=do,
- icon="ok",
- tip=talk.text("checked"))
-
-
- current_Y += 50
-
-
- # Preparing lists.
- if "settings_lists" not in win.current:
-
- win.current["settings_lists"] = {}
- win.current["settings_lists"]["languages"] = settings.list_languages()
- win.current["settings_lists"]["languages_open"] = False
- win.current["settings_lists"]["themes"] = os.listdir(os.getcwd()+"/settings/themes")
- win.current["settings_lists"]["themes_open"] = False
-
-
- # Languages
- def do():
- win.current["settings_lists"]["languages_open"] = \
- not win.current["settings_lists"]["languages_open"]
-
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-240,
- 110 + current_Y + win.scroll["pm_settings"],
- 450,
- 40,
- 10,
- button=do,
- icon="font",
- tip=talk.text("change_language"))
-
- UI_color.set(layer, win, "text_normal")
- layer.set_font_size(20)
- layer.move_to(win.current["w"]/2-180,
- current_Y + win.scroll["pm_settings"] + 135)
- layer.show_text(win.settings["Language"])
-
- current_Y += 50
-
- if win.current["settings_lists"]["languages_open"]:
-
-
- for lang in win.current["settings_lists"]["languages"]:
- if lang != win.settings["Language"]:
-
- UI_color.set(layer, win, "button_active")
- layer.move_to(win.current["w"]/2-227, 102 + current_Y + win.scroll["pm_settings"])
- layer.line_to(win.current["w"]/2-227, 152 + current_Y + win.scroll["pm_settings"])
- layer.stroke()
-
- def do():
- win.settings["Language"] = lang
- settings.write("Language", lang)
- win.current["settings_lists"]["languages_open"] = False
-
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-220,
- 110 + current_Y + win.scroll["pm_settings"],
- 430,
- 40,
- 10,
- button=do,
- icon="font",
- tip=talk.text("set_language")+lang)
-
-
- UI_color.set(layer, win, "text_normal")
- layer.set_font_size(20)
- layer.move_to(win.current["w"]/2-150,
- current_Y + win.scroll["pm_settings"] + 135)
- layer.show_text(lang)
-
- current_Y += 50
-
-
-
- # Themes. Finally we have some themes to choose from. And a good place to
- # change them so the user would not need to do it manually. I think it's
- # important.
-
- # So there is a folder in the VCStudio installation called. settings/themes
- # which contains all of the themes. So let's look through it.
-
- # Themes
- def do():
- win.current["settings_lists"]["themes_open"] = \
- not win.current["settings_lists"]["themes_open"]
-
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-240,
- 110 + current_Y + win.scroll["pm_settings"],
- 450,
- 40,
- 10,
- button=do,
- icon="theme",
- tip=talk.text("change_theme"))
-
- UI_color.set(layer, win, "text_normal")
- layer.set_font_size(20)
- layer.move_to(win.current["w"]/2-180,
- current_Y + win.scroll["pm_settings"] + 135)
- layer.show_text(win.settings["Theme"])
-
- current_Y += 50
-
- if win.current["settings_lists"]["themes_open"]:
-
-
- for lang in win.current["settings_lists"]["themes"]:
- if lang != win.settings["Theme"]:
-
- UI_color.set(layer, win, "button_active")
- layer.move_to(win.current["w"]/2-227, 102 + current_Y + win.scroll["pm_settings"])
- layer.line_to(win.current["w"]/2-227, 152 + current_Y + win.scroll["pm_settings"])
- layer.stroke()
-
- def do():
- win.settings["Theme"] = lang
- settings.write("Theme", lang)
- win.current["settings_lists"]["themes_open"] = False
- win.color = UI_color.get_table()
-
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-220,
- 110 + current_Y + win.scroll["pm_settings"],
- 430,
- 40,
- 10,
- button=do,
- icon="theme",
- tip=talk.text("set_theme")+lang)
-
-
- UI_color.set(layer, win, "text_normal")
- layer.set_font_size(20)
- layer.move_to(win.current["w"]/2-150,
- current_Y + win.scroll["pm_settings"] + 135)
- layer.show_text(lang)
-
- current_Y += 50
-
-
-
- # BLUR
-
- blur_ok = "unchecked"
- if win.settings["Blur"]:
- blur_ok = "checked"
-
- def do():
- win.settings["Blur"] = not win.settings["Blur"]
- settings.write("Blur", win.settings["Blur"])
-
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-240,
- 110 + current_Y + win.scroll["pm_settings"],
- 450,
- 40,
- 10,
- button=do,
- icon=blur_ok,
- tip=talk.text("Blur"))
-
- UI_color.set(layer, win, "text_normal")
- layer.set_font_size(20)
- layer.move_to(win.current["w"]/2-180,
- current_Y + win.scroll["pm_settings"] + 135)
- layer.show_text(talk.text("Blur"))
-
- current_Y += 50
-
- if win.settings["Blur"]:
- ablur_ok = "unchecked"
- if win.settings["Auto_De-Blur"]:
- ablur_ok = "checked"
-
- def do():
- win.settings["Auto_De-Blur"] = not win.settings["Auto_De-Blur"]
- settings.write("Auto_De-Blur", win.settings["Auto_De-Blur"])
-
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-240,
- 110 + current_Y + win.scroll["pm_settings"],
- 450,
- 40,
- 10,
- button=do,
- icon=ablur_ok,
- tip=talk.text("Auto_De-Blur"))
-
- UI_color.set(layer, win, "text_normal")
- layer.set_font_size(20)
- layer.move_to(win.current["w"]/2-180,
- current_Y + win.scroll["pm_settings"] + 135)
- layer.show_text(talk.text("Auto_De-Blur"))
-
- current_Y += 50
-
-
- # ROUNDNESS
-
- # The roundness setting is a setting that will define how round the UI will
- # look. Potentially it can grow beyond 1.0, but will introduce weird rendering
- # artifacts. If you wan to do that be free to edit the Setting file manually.
-
- # I'm going to use the Scroller for this setting. But first we need an icon. And
- # I think the opengl icon is quite good for this.
-
- UI_elements.image(layer, win, "settings/themes/"\
- +win.settings["Theme"]+"/icons/opengl.png",
- win.current["w"]/2-240,
- 110 + current_Y + win.scroll["pm_settings"],
- 40,
- 40)
-
- # Then i'm going to hack my way to it. I'm going to use a scroll for a scrooled
- # window as the slider. Creativity.
-
- maxround = 1000 # I need it do be a higher number then from 0 to 1 since we want
- # to imulate the scroll
-
- if "roundness_setting" not in win.scroll:
- win.scroll["roundness_setting"] = 0 - win.settings["Roundness"] * 549
-
-
- if (0 - win.settings["Roundness"] * 549) != win.scroll["roundness_setting"]:
- win.settings["Roundness"] = (win.scroll["roundness_setting"] / 549)*-1
- settings.write("Roundness", win.settings["Roundness"])
-
- UI_elements.scroll_area(layer, win, "roundness_setting",
- int(win.current["w"]/2-200),
- 110 + current_Y + win.scroll["pm_settings"]+33,
- 450,
- 0,
- maxround,
- bar=True,
- sideways=True,
- url="settings_layer"
- )
-
- current_Y += 50
- # SMOOTH SCROLLING
-
- autod_ok = "unchecked"
- if win.settings['Scroll_smoothness']:
- autod_ok = "checked"
-
- def do():
- win.settings["Scroll_smoothness"] = not win.settings["Scroll_smoothness"]
- settings.write("Scroll_smoothness", win.settings["Scroll_smoothness"])
-
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-240,
- 110 + current_Y + win.scroll["pm_settings"],
- 450,
- 40,
- 10,
- button=do,
- icon=autod_ok,
- tip=talk.text("Scroll_smoothness"))
-
- UI_color.set(layer, win, "text_normal")
- layer.set_font_size(20)
- layer.move_to(win.current["w"]/2-180,
- current_Y + win.scroll["pm_settings"] + 135)
- layer.show_text(talk.text("Scroll_smoothness"))
-
- current_Y += 50
- # AUTO DOWNLOAD IMAGES
-
- autod_ok = "unchecked"
- if win.settings["auto_download_images"]:
- autod_ok = "checked"
-
- def do():
- win.settings["auto_download_images"] = not win.settings["auto_download_images"]
- settings.write("auto_download_images", win.settings["auto_download_images"])
-
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-240,
- 110 + current_Y + win.scroll["pm_settings"],
- 450,
- 40,
- 10,
- button=do,
- icon=autod_ok,
- tip=talk.text("auto_download_images"))
-
- UI_color.set(layer, win, "text_normal")
- layer.set_font_size(20)
- layer.move_to(win.current["w"]/2-180,
- current_Y + win.scroll["pm_settings"] + 135)
- layer.show_text(talk.text("auto_download_images"))
- current_Y += 50
-
- # AUTO CHECK FOR UPDATES
- autod_ok = "unchecked"
- if win.settings["check-for-updates"]:
- autod_ok = "checked"
-
- def do():
- win.settings["check-for-updates"] = not win.settings["check-for-updates"]
- settings.write("check-for-updates", win.settings["check-for-updates"])
-
- UI_elements.roundrect(layer, win,
- win.current["w"]/2-240,
- 110 + current_Y + win.scroll["pm_settings"],
- 450,
- 40,
- 10,
- button=do,
- icon=autod_ok,
- tip=talk.text("check-for-updates"))
-
- UI_color.set(layer, win, "text_normal")
- layer.set_font_size(20)
- layer.move_to(win.current["w"]/2-180,
- current_Y + win.scroll["pm_settings"] + 135)
- layer.show_text(talk.text("check-for-updates"))
-
- UI_elements.scroll_area(layer, win, "pm_settings",
- int(win.current["w"]/2-250),
- 100,
- 500,
- win.current["h"]-260,
- current_Y,
- bar=True,
- mmb=True,
- url="settings_layer"
- )
-
-
- return surface
|