PCSX2 Documentation/The PCSX2 Program Flow: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 16: Line 16:
</source>
</source>
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! They are all defined in [https://github.com/PCSX2/pcsx2/blob/master/pcsx2/gui/MainFrame.cpp MainFrame.cpp].
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! They are all defined in [https://github.com/PCSX2/pcsx2/blob/master/pcsx2/gui/MainFrame.cpp MainFrame.cpp].
==Into the Core==
Alright, so what happens when we load an iso?
ninja
782

edits