import customtkinter
from GraphSelect import *
from GraphCreate import *

customtkinter.set_default_color_theme("blue")                                  # Themes: "blue" (standard), "green", "dark-blue"
customtkinter.set_appearance_mode("system")			                           # Appearance: "system" (standard), "dark", "light"

filenames = ['dummymain.lst']
		

class App(customtkinter.CTk):
    def __init__(self):
        super().__init__()

        self.geometry("1024x768")
        self.title("STELCOR Interface")

# create radio button frame 1 with print button
        self.graph_select_frame = GraphSelectFrame(self, header_name="Graph Selections")
        self.graph_select_frame.grid(row=0, column=0, padx=20, pady=20)

        self.graph_frame = GraphFrame(self, header_name="Graph Section")
        self.graph_frame.grid(row=0, column=3, padx=20, pady=20)

if __name__ == "__main__":
    app = App()
    app.mainloop()
    
    


