mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-06-12 13:17:41 +02:00
Implement world and server selection
Signed-off-by: Yihe Li <winmikedows@hotmail.com>
This commit is contained in:
@ -43,9 +43,10 @@ class CreateShortcutDialog : public QDialog {
|
||||
|
||||
// Override target (world, server)
|
||||
void on_targetCheckbox_stateChanged(int state);
|
||||
void on_worldTarget_toggled(bool checked);
|
||||
void on_serverTarget_toggled(bool checked);
|
||||
void on_worldSelectionBox_currentIndexChanged(int index);
|
||||
void on_serverAddressBox_textChanged(const QString& arg1);
|
||||
void targetChanged();
|
||||
void on_serverAddressBox_textChanged(const QString& text);
|
||||
|
||||
private:
|
||||
// Data
|
||||
@ -56,4 +57,7 @@ class CreateShortcutDialog : public QDialog {
|
||||
|
||||
// Index representations
|
||||
enum class SaveTarget { Desktop, Applications, Other };
|
||||
|
||||
// Functions
|
||||
void stateChanged();
|
||||
};
|
||||
|
Reference in New Issue
Block a user