bf5e1aee70
The workspace now can save the following: - Palettes - Toolbars - Menubar - GUI preferences - GUI components Also, Basic and Advanced workspaces are no longer hard coded. See the following blog posts for more info: Project Description: https://musescore.org/en/user/1190941/blog/2018/04/26/gsoc-2018-beginner-mode-and-tutorial-creation-project-description Week 1: https://musescore.org/en/user/1190941/blog/2018/05/20/gsoc-2018-beginner-mode-and-tutorial-creation-week-1 Week 2: https://musescore.org/en/user/1190941/blog/2018/05/28/gsoc-2018-beginner-mode-and-tutorial-creation-week-2 Week 3: https://musescore.org/en/user/1190941/blog/2018/06/04/gsoc-2018-beginner-mode-and-tutorial-creation-week-3 Week 4: https://musescore.org/en/user/1190941/blog/2018/06/12/gsoc-2018-beginner-mode-and-tutorial-creation-week-4 Week 5: https://musescore.org/en/user/1190941/blog/2018/06/17/gsoc-2018-beginner-mode-and-tutorial-creation-week-5
39 lines
1,023 B
C++
39 lines
1,023 B
C++
//=============================================================================
|
|
// MuseScore
|
|
// Music Composition & Notation
|
|
//
|
|
// Copyright (C) 2002-2018 Werner Schweer
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2
|
|
// as published by the Free Software Foundation and appearing in
|
|
// the file LICENCE.GPL
|
|
//=============================================================================
|
|
|
|
#ifndef __WORKSPACEDIALOG_H__
|
|
#define __WORKSPACEDIALOG_H__
|
|
|
|
#include "ui_workspacedialog.h"
|
|
|
|
namespace Ms {
|
|
|
|
class WorkspaceDialog : public QDialog, Ui::WorkspaceDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit WorkspaceDialog(QWidget *parent = 0);
|
|
bool editMode; // Set when editing the workspace
|
|
void display();
|
|
|
|
private slots:
|
|
void accepted();
|
|
|
|
protected:
|
|
virtual void changeEvent(QEvent* event);
|
|
void retranslate() { retranslateUi(this); }
|
|
|
|
};
|
|
|
|
}
|
|
#endif // __WORKSPACEDIALOG_H__
|