mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-01 23:26:03 +00:00
Qt/GeckoCodeWidget: Option to add/remove gecko codes from UI
This commit is contained in:
parent
d9d75c27f0
commit
ee90893bfe
2 changed files with 78 additions and 2 deletions
|
@ -32,10 +32,14 @@ signals:
|
|||
private:
|
||||
void OnSelectionChanged();
|
||||
void OnItemChanged(QListWidgetItem* item);
|
||||
void OnDelete();
|
||||
|
||||
void CreateWidgets();
|
||||
void ConnectWidgets();
|
||||
void UpdateList();
|
||||
void AddCode();
|
||||
void EditCode();
|
||||
void RemoveCode();
|
||||
void DownloadCodes();
|
||||
void SaveCodes();
|
||||
|
||||
|
@ -49,6 +53,9 @@ private:
|
|||
QLabel* m_creator_label;
|
||||
QTextEdit* m_code_description;
|
||||
QTextEdit* m_code_view;
|
||||
QPushButton* m_add_code;
|
||||
QPushButton* m_edit_code;
|
||||
QPushButton* m_remove_code;
|
||||
QPushButton* m_download_codes;
|
||||
std::vector<Gecko::GeckoCode> m_gecko_codes;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue