PCSX2 Documentation/The PCSX2 Program Flow: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 15: Line 15:
if( m_UseGUI ) OpenMainFrame();
if( m_UseGUI ) OpenMainFrame();
</source>
</source>
In addition to Application classes, there are also Frame classes. The frame classes define the various GUI parts that we can click on and interact with. This is opening the main pcsx2 window, which is declared in this header file: [https://github.com/PCSX2/pcsx2/blob/master/pcsx2/gui/MainFrame.h MainFrame.h]. Take a look and you can see declarations for all the PCSX2 buttons and menus and all of that cool stuff!
In addition to Application classes, there are also Frame classes. The frame classes define the different windows in the GUI, and inside the frame classes are the various GUI parts that we can click on and interact with. This is opening the main pcsx2 window, which is declared in this header file: [https://github.com/PCSX2/pcsx2/blob/master/pcsx2/gui/MainFrame.h MainFrame.h]. Take a look and you can see declarations for all the PCSX2 buttons and menus and all of that cool stuff!
ninja
782

edits