Compare commits
No commits in common. "8c49dfd3fa7f955df00f9e4552fa0087d20c8240" and "214b7cc0b8fb3023aad0afc3af85aa6accee18d5" have entirely different histories.
8c49dfd3fa
...
214b7cc0b8
|
@ -861,14 +861,6 @@ void Compiler::setRebuild(bool isRebuild)
|
|||
mRebuild = isRebuild;
|
||||
}
|
||||
|
||||
QStringList Compiler::getReflextiveArguments()
|
||||
{
|
||||
QStringList result{
|
||||
"-Wall", "-Werror", "-Wextra", "-pedantic", "-Wconversion"
|
||||
};
|
||||
return result;
|
||||
}
|
||||
|
||||
void Compiler::log(const QString &msg)
|
||||
{
|
||||
emit compileOutput(msg);
|
||||
|
|
|
@ -83,7 +83,6 @@ protected:
|
|||
virtual bool parseForceUTF8ForAutolink(
|
||||
const QString& filename,
|
||||
QSet<QString>& parsedFiles);
|
||||
virtual QStringList getReflextiveArguments();
|
||||
void log(const QString& msg);
|
||||
void error(const QString& msg);
|
||||
void runCommand(const QString& cmd, const QStringList& arguments, const QString& workingDir, const QByteArray& inputText=QByteArray(), const QString& outputFile=QString());
|
||||
|
|
|
@ -125,7 +125,6 @@ bool FileCompiler::prepareForCompile()
|
|||
mArguments += getCCompileArguments(mOnlyCheckSyntax);
|
||||
mArguments += getCIncludeArguments();
|
||||
mArguments += getProjectIncludeArguments();
|
||||
mArguments += getReflextiveArguments();
|
||||
strFileType = "C";
|
||||
mCompiler = compilerSet()->CCompiler();
|
||||
break;
|
||||
|
@ -133,7 +132,6 @@ bool FileCompiler::prepareForCompile()
|
|||
mArguments += getCppCompileArguments(mOnlyCheckSyntax);
|
||||
mArguments += getCppIncludeArguments();
|
||||
mArguments += getProjectIncludeArguments();
|
||||
mArguments += getReflextiveArguments();
|
||||
strFileType = "C++";
|
||||
mCompiler = compilerSet()->cppCompiler();
|
||||
break;
|
||||
|
|
|
@ -249,8 +249,6 @@ void ProjectCompiler::writeMakeDefines(QFile &file, bool &genModuleDef)
|
|||
cIncludeArguments += getProjectIncludeArguments();
|
||||
QStringList cxxIncludeArguments = getCppIncludeArguments();
|
||||
cxxIncludeArguments += getProjectIncludeArguments();
|
||||
cxxIncludeArguments += getReflextiveArguments();
|
||||
cIncludeArguments += getReflextiveArguments();
|
||||
#ifdef Q_OS_WIN
|
||||
QStringList resourceArguments = parseArguments(mProject->options().resourceCmd, devCppMacroVariables(), true);
|
||||
#endif
|
||||
|
|
|
@ -50,7 +50,6 @@ private:
|
|||
// Compiler interface
|
||||
private:
|
||||
bool mOnlyClean;
|
||||
|
||||
protected:
|
||||
bool prepareForCompile() override;
|
||||
bool prepareForRebuild() override;
|
||||
|
|
|
@ -5209,7 +5209,6 @@ int Editor::gutterClickedLine() const
|
|||
|
||||
void Editor::toggleBreakpoint(int line)
|
||||
{
|
||||
return;
|
||||
if (hasBreakpoint(line)) {
|
||||
mBreakpointLines.remove(line);
|
||||
if (inTab())
|
||||
|
@ -5226,7 +5225,6 @@ void Editor::toggleBreakpoint(int line)
|
|||
|
||||
void Editor::clearBreakpoints()
|
||||
{
|
||||
return;
|
||||
pMainWindow->debugger()->deleteBreakpoints(this);
|
||||
mBreakpointLines.clear();
|
||||
invalidate();
|
||||
|
@ -5234,7 +5232,6 @@ void Editor::clearBreakpoints()
|
|||
|
||||
bool Editor::hasBreakpoint(int line)
|
||||
{
|
||||
return false;
|
||||
return mBreakpointLines.contains(line);
|
||||
}
|
||||
|
||||
|
|
|
@ -498,10 +498,6 @@ MainWindow::MainWindow(QWidget *parent)
|
|||
updateShortcuts();
|
||||
updateEditorSettings();
|
||||
//updateEditorBookmarks();
|
||||
|
||||
ui->tabWatch->setVisible(false);
|
||||
ui->tabDebug->setVisible(false);
|
||||
ui->tabDebugConsole->setVisible(false);
|
||||
}
|
||||
|
||||
MainWindow::~MainWindow()
|
||||
|
@ -1105,7 +1101,7 @@ void MainWindow::applyUISettings()
|
|||
|
||||
ui->actionProject->setChecked(settings.showProject());
|
||||
showHideInfosTab(ui->tabProject,settings.showProject());
|
||||
ui->actionWatch->setChecked(false);
|
||||
ui->actionWatch->setChecked(settings.showWatch());
|
||||
showHideInfosTab(ui->tabWatch,settings.showWatch());
|
||||
ui->actionStructure->setChecked(settings.showStructure());
|
||||
showHideInfosTab(ui->tabStructure,settings.showStructure());
|
||||
|
@ -1137,9 +1133,6 @@ void MainWindow::applyUISettings()
|
|||
ui->tabMessages->setShrinkedFlag(true);
|
||||
if (settings.shrinkExplorerTabs())
|
||||
ui->tabExplorer->setShrinkedFlag(true);
|
||||
ui->tabWatch->setVisible(false);
|
||||
ui->tabDebug->setVisible(false);
|
||||
ui->tabDebugConsole->setVisible(false);
|
||||
}
|
||||
|
||||
QFileSystemWatcher *MainWindow::fileSystemWatcher()
|
||||
|
@ -1972,6 +1965,7 @@ void MainWindow::updateActionIcons()
|
|||
ui->toolbarMain->setIconSize(iconSize);
|
||||
ui->toolbarCode->setIconSize(iconSize);
|
||||
ui->toolbarCompile->setIconSize(iconSize);
|
||||
ui->toolbarDebug->setIconSize(iconSize);
|
||||
ui->toolbarCompilerSet->setIconSize(iconSize);
|
||||
for (QToolButton* btn: mClassBrowserToolbar->findChildren<QToolButton *>()) {
|
||||
btn->setIconSize(iconSize);
|
||||
|
@ -2118,10 +2112,10 @@ void MainWindow::updateActionIcons()
|
|||
|
||||
mProblem_Properties->setIcon(pIconsManager->getIcon(IconsManager::ACTION_PROBLEM_PROPERTIES));
|
||||
|
||||
//int idx = ui->tabExplorer->indexOf(ui->tabWatch);
|
||||
//if (idx>=0)
|
||||
// ui->tabExplorer->setTabIcon(idx,pIconsManager->getIcon(IconsManager::ACTION_RUN_ADD_WATCH));
|
||||
int idx = ui->tabExplorer->indexOf(ui->tabProject);
|
||||
int idx = ui->tabExplorer->indexOf(ui->tabWatch);
|
||||
if (idx>=0)
|
||||
ui->tabExplorer->setTabIcon(idx,pIconsManager->getIcon(IconsManager::ACTION_RUN_ADD_WATCH));
|
||||
idx = ui->tabExplorer->indexOf(ui->tabProject);
|
||||
if (idx>=0)
|
||||
ui->tabExplorer->setTabIcon(idx,pIconsManager->getIcon(IconsManager::ACTION_PROJECT_NEW));
|
||||
idx = ui->tabExplorer->indexOf(ui->tabFiles);
|
||||
|
@ -2739,7 +2733,6 @@ void MainWindow::stretchExplorerPanel(bool open)
|
|||
|
||||
void MainWindow::prepareDebugger()
|
||||
{
|
||||
return;
|
||||
mDebugger->stop();
|
||||
|
||||
// Clear logs
|
||||
|
@ -2753,9 +2746,9 @@ void MainWindow::prepareDebugger()
|
|||
mDebugger->setLeftPageIndexBackup(ui->tabExplorer->currentIndex());
|
||||
|
||||
// Focus on the debugging buttons
|
||||
//ui->tabExplorer->setCurrentWidget(ui->tabWatch);
|
||||
//ui->tabMessages->setCurrentWidget(ui->tabDebug);
|
||||
//ui->debugViews->setCurrentWidget(ui->tabLocals);
|
||||
ui->tabExplorer->setCurrentWidget(ui->tabWatch);
|
||||
ui->tabMessages->setCurrentWidget(ui->tabDebug);
|
||||
ui->debugViews->setCurrentWidget(ui->tabLocals);
|
||||
stretchMessagesPanel(true);
|
||||
stretchExplorerPanel(true);
|
||||
|
||||
|
@ -5008,7 +5001,6 @@ void MainWindow::onProjectRenameUnit()
|
|||
|
||||
void MainWindow::onBreakpointRemove()
|
||||
{
|
||||
return;
|
||||
int index =ui->tblBreakpoints->selectionModel()->currentIndex().row();
|
||||
|
||||
PBreakpoint breakpoint = debugger()->breakpointModel()->breakpoint(index, debugger()->isForProject());
|
||||
|
@ -5645,7 +5637,7 @@ void MainWindow::closeEvent(QCloseEvent *event) {
|
|||
settings.setShowToolWindowBars(ui->actionTool_Window_Bars->isChecked());
|
||||
|
||||
settings.setShowProject(ui->actionProject->isChecked());
|
||||
settings.setShowWatch(false);
|
||||
settings.setShowWatch(ui->actionWatch->isChecked());
|
||||
settings.setShowStructure(ui->actionStructure->isChecked());
|
||||
settings.setShowFiles(ui->actionFiles->isChecked());
|
||||
settings.setShowProblemSet(ui->actionProblem_Set->isChecked());
|
||||
|
@ -5761,9 +5753,6 @@ void MainWindow::showEvent(QShowEvent *)
|
|||
ui->tabMessages->setCurrentIndex(settings.bottomPanelIndex());
|
||||
ui->tabExplorer->setCurrentIndex(settings.leftPanelIndex());
|
||||
ui->debugViews->setCurrentIndex(settings.debugPanelIndex());
|
||||
ui->tabWatch->setVisible(false);
|
||||
ui->tabDebug->setVisible(false);
|
||||
ui->tabDebugConsole->setVisible(false);
|
||||
}
|
||||
|
||||
void MainWindow::hideEvent(QHideEvent *)
|
||||
|
@ -6489,7 +6478,6 @@ void MainWindow::on_actionContinue_triggered()
|
|||
|
||||
void MainWindow::on_actionAdd_Watch_triggered()
|
||||
{
|
||||
return;
|
||||
QString s = "";
|
||||
Editor *e = mEditorList->getEditor();
|
||||
if (e!=nullptr) {
|
||||
|
@ -6714,7 +6702,6 @@ void MainWindow::on_btnSearchAgain_clicked()
|
|||
|
||||
void MainWindow::on_actionRemove_Watch_triggered()
|
||||
{
|
||||
return;
|
||||
QModelIndexList lst=ui->watchView->selectionModel()->selectedRows();
|
||||
if (lst.count()<=1) {
|
||||
QModelIndex index =ui->watchView->currentIndex();
|
||||
|
@ -6747,14 +6734,12 @@ void MainWindow::on_actionRemove_Watch_triggered()
|
|||
|
||||
void MainWindow::on_actionRemove_All_Watches_triggered()
|
||||
{
|
||||
return;
|
||||
mDebugger->removeWatchVars(true);
|
||||
}
|
||||
|
||||
|
||||
void MainWindow::on_actionModify_Watch_triggered()
|
||||
{
|
||||
return;
|
||||
QModelIndexList lst=ui->watchView->selectionModel()->selectedRows();
|
||||
if (lst.count()<=1) {
|
||||
QModelIndex index =ui->watchView->currentIndex();
|
||||
|
@ -6886,7 +6871,6 @@ void MainWindow::on_actionPrevious_Editor_triggered()
|
|||
|
||||
void MainWindow::on_actionToggle_Breakpoint_triggered()
|
||||
{
|
||||
return;
|
||||
Editor * editor = mEditorList->getEditor();
|
||||
if (editor)
|
||||
editor->toggleBreakpoint(editor->caretY());
|
||||
|
@ -6895,7 +6879,6 @@ void MainWindow::on_actionToggle_Breakpoint_triggered()
|
|||
|
||||
void MainWindow::on_actionClear_all_breakpoints_triggered()
|
||||
{
|
||||
return;
|
||||
Editor *e=mEditorList->getEditor();
|
||||
if (!e)
|
||||
return;
|
||||
|
@ -7392,13 +7375,6 @@ PSymbolUsageManager &MainWindow::symbolUsageManager()
|
|||
|
||||
void MainWindow::showHideInfosTab(QWidget *widget, bool show)
|
||||
{
|
||||
if (widget == ui->tabWatch) {
|
||||
int idx = findTabIndex(ui->tabExplorer,widget);
|
||||
if (idx >= 0) {
|
||||
ui->tabExplorer->removeTab(idx);
|
||||
}
|
||||
return;
|
||||
}
|
||||
int idx = findTabIndex(ui->tabExplorer,widget);
|
||||
if (idx>=0) {
|
||||
if (!show) {
|
||||
|
@ -7409,7 +7385,6 @@ void MainWindow::showHideInfosTab(QWidget *widget, bool show)
|
|||
}
|
||||
|
||||
ui->tabExplorer->removeTab(idx);
|
||||
ui->tabWatch->setVisible(false);
|
||||
}
|
||||
} else {
|
||||
if (show && mTabInfosData.contains(widget)) {
|
||||
|
@ -7428,11 +7403,8 @@ void MainWindow::showHideInfosTab(QWidget *widget, bool show)
|
|||
} else {
|
||||
ui->tabExplorer->addTab(widget, info->icon, info->text);
|
||||
}
|
||||
ui->tabWatch->setVisible(false);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void MainWindow::showHideMessagesTab(QWidget *widget, bool show)
|
||||
|
@ -7489,8 +7461,6 @@ void MainWindow::prepareTabInfosData()
|
|||
info->icon = ui->tabExplorer->tabIcon(i);
|
||||
mTabInfosData[widget]=info;
|
||||
}
|
||||
ui->tabWatch->setVisible(false);
|
||||
|
||||
}
|
||||
|
||||
void MainWindow::prepareTabMessagesData()
|
||||
|
@ -8865,7 +8835,6 @@ QList<QAction *> MainWindow::listShortCutableActions()
|
|||
|
||||
void MainWindow::switchCurrentStackTrace(int idx)
|
||||
{
|
||||
return;
|
||||
PTrace trace = mDebugger->backtraceModel()->backtrace(idx);
|
||||
if (trace) {
|
||||
Editor *e = openFile(trace->filename);
|
||||
|
@ -8905,9 +8874,6 @@ void MainWindow::on_actionTool_Window_Bars_triggered()
|
|||
ui->tabExplorer->setVisible(state);
|
||||
ui->tabMessages->setVisible(state);
|
||||
ui->actionTool_Window_Bars->setChecked(state);
|
||||
ui->tabWatch->setVisible(false);
|
||||
ui->tabDebug->setVisible(false);
|
||||
ui->tabDebugConsole->setVisible(false);
|
||||
}
|
||||
|
||||
void MainWindow::on_actionStatus_Bar_triggered()
|
||||
|
@ -8928,9 +8894,9 @@ void MainWindow::on_actionProject_triggered()
|
|||
|
||||
void MainWindow::on_actionWatch_triggered()
|
||||
{
|
||||
// bool state = ui->actionWatch->isChecked();
|
||||
// ui->actionWatch->setChecked(state);
|
||||
// showHideInfosTab(ui->tabWatch,state);
|
||||
bool state = ui->actionWatch->isChecked();
|
||||
ui->actionWatch->setChecked(state);
|
||||
showHideInfosTab(ui->tabWatch,state);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>1536</width>
|
||||
<width>936</width>
|
||||
<height>619</height>
|
||||
</rect>
|
||||
</property>
|
||||
|
@ -119,8 +119,8 @@
|
|||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>1536</width>
|
||||
<height>22</height>
|
||||
<width>2002</width>
|
||||
<height>25</height>
|
||||
</rect>
|
||||
</property>
|
||||
<widget class="QMenu" name="menuFile">
|
||||
|
@ -160,8 +160,18 @@
|
|||
<addaction name="actionRun_Parameters"/>
|
||||
<addaction name="actionCompiler_Options"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionDebug"/>
|
||||
<addaction name="actionInterrupt"/>
|
||||
<addaction name="actionStep_Over"/>
|
||||
<addaction name="actionStep_Into"/>
|
||||
<addaction name="actionStep_Out"/>
|
||||
<addaction name="actionRun_To_Cursor"/>
|
||||
<addaction name="actionContinue"/>
|
||||
<addaction name="actionStop_Execution"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionAdd_Watch"/>
|
||||
<addaction name="actionAdd_Watchpoint"/>
|
||||
<addaction name="actionView_CPU_Window"/>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menuEdit">
|
||||
<property name="title">
|
||||
|
@ -279,6 +289,13 @@
|
|||
<addaction name="actionC_C_Reference"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionOI_Wiki"/>
|
||||
<addaction name="actionRaylib_Manual"/>
|
||||
<addaction name="actionEGE_Manual"/>
|
||||
<addaction name="actionTurtle_Graphics_Manual"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionGNU_Assembler_Manual"/>
|
||||
<addaction name="actionx86_Assembly_Language_Reference_Manual"/>
|
||||
<addaction name="actionIA_32_Assembly_Language_Reference_Manual"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionWebsite"/>
|
||||
<addaction name="actionSubmit_Issues"/>
|
||||
|
@ -411,6 +428,33 @@
|
|||
<addaction name="separator"/>
|
||||
<addaction name="actionRun_Parameters"/>
|
||||
</widget>
|
||||
<widget class="QToolBar" name="toolbarDebug">
|
||||
<property name="windowTitle">
|
||||
<string>Debug</string>
|
||||
</property>
|
||||
<property name="iconSize">
|
||||
<size>
|
||||
<width>24</width>
|
||||
<height>24</height>
|
||||
</size>
|
||||
</property>
|
||||
<attribute name="toolBarArea">
|
||||
<enum>TopToolBarArea</enum>
|
||||
</attribute>
|
||||
<attribute name="toolBarBreak">
|
||||
<bool>false</bool>
|
||||
</attribute>
|
||||
<addaction name="actionDebug"/>
|
||||
<addaction name="actionInterrupt"/>
|
||||
<addaction name="actionStep_Over"/>
|
||||
<addaction name="actionStep_Into"/>
|
||||
<addaction name="actionStep_Out"/>
|
||||
<addaction name="actionRun_To_Cursor"/>
|
||||
<addaction name="actionContinue"/>
|
||||
<addaction name="actionStop_Execution"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionAdd_Watch"/>
|
||||
</widget>
|
||||
<widget class="QToolBar" name="toolbarCompilerSet">
|
||||
<property name="windowTitle">
|
||||
<string>Compiler Set</string>
|
||||
|
@ -453,7 +497,7 @@
|
|||
<enum>QTabWidget::TabPosition::West</enum>
|
||||
</property>
|
||||
<property name="currentIndex">
|
||||
<number>2</number>
|
||||
<number>4</number>
|
||||
</property>
|
||||
<property name="usesScrollButtons">
|
||||
<bool>true</bool>
|
||||
|
@ -593,9 +637,6 @@
|
|||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="tabWatch">
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="autoFillBackground">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
|
@ -1604,7 +1645,7 @@
|
|||
<string>Add Probem Case</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/00Misc-03Add.svg</normaloff>:/resources/iconsets/newlook/actions/00Misc-03Add.svg</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
|
@ -1618,7 +1659,7 @@
|
|||
<string>Remove Problem Case</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/00Misc-04Remove.svg</normaloff>:/resources/iconsets/newlook/actions/00Misc-04Remove.svg</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
|
@ -1632,7 +1673,7 @@
|
|||
<string>Open Anwser Source File</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/08Problem-04EditSource.svg</normaloff>:/resources/iconsets/newlook/actions/08Problem-04EditSource.svg</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
|
@ -1653,7 +1694,7 @@
|
|||
<string>Run All Cases</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/08Problem-05RunCases.svg</normaloff>:/resources/iconsets/newlook/actions/08Problem-05RunCases.svg</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
|
@ -1664,7 +1705,7 @@
|
|||
<string>Problem Cases Validation Options</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/00Misc-05Gear.svg</normaloff>:/resources/iconsets/newlook/actions/00Misc-05Gear.svg</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
|
@ -1785,7 +1826,7 @@
|
|||
<string>Choose Input File</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/00Misc-07Folder.svg</normaloff>:/resources/iconsets/newlook/actions/00Misc-07Folder.svg</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
|
@ -1904,7 +1945,7 @@
|
|||
<string>Choose Expected Output File</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/00Misc-07Folder.svg</normaloff>:/resources/iconsets/newlook/actions/00Misc-07Folder.svg</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
|
@ -1977,7 +2018,7 @@
|
|||
</widget>
|
||||
<action name="actionNew">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/01File-01New.svg</normaloff>:/resources/iconsets/newlook/actions/01File-01New.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -1992,7 +2033,7 @@
|
|||
</action>
|
||||
<action name="actionOpen">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/01File-02Open.svg</normaloff>:/resources/iconsets/newlook/actions/01File-02Open.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2004,7 +2045,7 @@
|
|||
</action>
|
||||
<action name="actionSave">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/01File-03Save.svg</normaloff>:/resources/iconsets/newlook/actions/01File-03Save.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2016,7 +2057,7 @@
|
|||
</action>
|
||||
<action name="actionSaveAs">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/01File-04SaveAs.svg</normaloff>:/resources/iconsets/newlook/actions/01File-04SaveAs.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2031,7 +2072,7 @@
|
|||
</action>
|
||||
<action name="actionSaveAll">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/01File-05SaveAll.svg</normaloff>:/resources/iconsets/newlook/actions/01File-05SaveAll.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2043,7 +2084,7 @@
|
|||
</action>
|
||||
<action name="actionOptions">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/00Misc-05Gear.svg</normaloff>:/resources/iconsets/newlook/actions/00Misc-05Gear.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2052,7 +2093,7 @@
|
|||
</action>
|
||||
<action name="actionCompile">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-01Compile.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-01Compile.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2067,7 +2108,7 @@
|
|||
</action>
|
||||
<action name="actionRun">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-03Run.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-03Run.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2082,7 +2123,7 @@
|
|||
</action>
|
||||
<action name="actionUndo">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/03Edit-01Undo.svg</normaloff>:/resources/iconsets/newlook/actions/03Edit-01Undo.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2094,7 +2135,7 @@
|
|||
</action>
|
||||
<action name="actionRedo">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/03Edit-02Redo.svg</normaloff>:/resources/iconsets/newlook/actions/03Edit-02Redo.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2106,7 +2147,7 @@
|
|||
</action>
|
||||
<action name="actionCut">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/03Edit-03Cut.svg</normaloff>:/resources/iconsets/newlook/actions/03Edit-03Cut.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2118,7 +2159,7 @@
|
|||
</action>
|
||||
<action name="actionCopy">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/03Edit-04Copy.svg</normaloff>:/resources/iconsets/newlook/actions/03Edit-04Copy.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2130,7 +2171,7 @@
|
|||
</action>
|
||||
<action name="actionPaste">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/03Edit-05Paste.svg</normaloff>:/resources/iconsets/newlook/actions/03Edit-05Paste.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2150,7 +2191,7 @@
|
|||
</action>
|
||||
<action name="actionIndent">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/03Edit-06Indent.svg</normaloff>:/resources/iconsets/newlook/actions/03Edit-06Indent.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2162,7 +2203,7 @@
|
|||
</action>
|
||||
<action name="actionUnIndent">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/03Edit-07Unindent.svg</normaloff>:/resources/iconsets/newlook/actions/03Edit-07Unindent.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2220,7 +2261,7 @@
|
|||
</action>
|
||||
<action name="actionRebuild">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-04Rebuild.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-04Rebuild.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2235,7 +2276,7 @@
|
|||
</action>
|
||||
<action name="actionStop_Execution">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-11Stop.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-11Stop.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2246,11 +2287,8 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="actionDebug">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-06Debug.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-06Debug.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2264,11 +2302,8 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="actionStep_Over">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-07StepOver.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-07StepOver.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2279,11 +2314,8 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="actionStep_Into">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-08StepInto.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-08StepInto.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2294,11 +2326,8 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="actionStep_Out">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-08StepOut.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-08StepOut.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2309,11 +2338,8 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="actionRun_To_Cursor">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-09RunToCursor.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-09RunToCursor.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2324,11 +2350,8 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="actionContinue">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-10Continue.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-10Continue.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2339,11 +2362,8 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="actionAdd_Watch">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-12AddWatch.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-12AddWatch.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2401,11 +2421,8 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="actionRemove_Watch">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-13RemoveWatch.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-13RemoveWatch.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2413,24 +2430,18 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="actionRemove_All_Watches">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Remove All Watches</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionModify_Watch">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Modify Watch...</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionReformat_Code">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/04Code-05Reformat.svg</normaloff>:/resources/iconsets/newlook/actions/04Code-05Reformat.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2442,7 +2453,7 @@
|
|||
</action>
|
||||
<action name="actionBack">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/04Code-01Back.svg</normaloff>:/resources/iconsets/newlook/actions/04Code-01Back.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2454,7 +2465,7 @@
|
|||
</action>
|
||||
<action name="actionForward">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/04Code-02Forward.svg</normaloff>:/resources/iconsets/newlook/actions/04Code-02Forward.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2670,9 +2681,6 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="actionEGE_Manual">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>EGE Manual</string>
|
||||
</property>
|
||||
|
@ -2697,7 +2705,7 @@
|
|||
</action>
|
||||
<action name="actionRun_Parameters">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-05Options.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-05Options.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2737,9 +2745,6 @@
|
|||
<property name="checkable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Watch</string>
|
||||
</property>
|
||||
|
@ -2788,9 +2793,6 @@
|
|||
<property name="checkable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Debug</string>
|
||||
</property>
|
||||
|
@ -2869,7 +2871,7 @@
|
|||
</action>
|
||||
<action name="actionInterrupt">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-16Interrupt.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-16Interrupt.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -2965,7 +2967,7 @@
|
|||
</action>
|
||||
<action name="actionCompiler_Options">
|
||||
<property name="icon">
|
||||
<iconset resource="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<iconset resource="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc">
|
||||
<normaloff>:/resources/iconsets/newlook/actions/05Run-17CompilerOptions.svg</normaloff>:/resources/iconsets/newlook/actions/05Run-17CompilerOptions.svg</iconset>
|
||||
</property>
|
||||
<property name="text">
|
||||
|
@ -3045,9 +3047,6 @@
|
|||
<property name="shortcut">
|
||||
<string>Ctrl+F12</string>
|
||||
</property>
|
||||
<property name="visible">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionTrim_trailing_spaces">
|
||||
<property name="text">
|
||||
|
@ -3096,9 +3095,6 @@
|
|||
</property>
|
||||
</action>
|
||||
<action name="actionAdd_Watchpoint">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Add Watchpoint...</string>
|
||||
</property>
|
||||
|
@ -3285,7 +3281,6 @@
|
|||
<enum>QAction::MenuRole::NoRole</enum>
|
||||
</property>
|
||||
</action>
|
||||
<zorder>dockMessages</zorder>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
|
@ -3318,7 +3313,7 @@
|
|||
</customwidget>
|
||||
</customwidgets>
|
||||
<resources>
|
||||
<include location="../build/Desktop_Qt_6_7_3_MinGW_64_bit-Release/RedPandaIDE/release/qmake_iconsets_files.qrc"/>
|
||||
<include location="R:/Red_Panda_CPP-static-Release/RedPandaIDE/release/qmake_iconsets_files.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
|
|
@ -8,6 +8,19 @@
|
|||
"header": "math.h",
|
||||
"links": "-lm"
|
||||
},
|
||||
{
|
||||
"execUseUTF8": true,
|
||||
"header": "raylib.h",
|
||||
"links": "-lraylib -lGL -lm -lpthread -ldl -lrt -lX11"
|
||||
},
|
||||
{
|
||||
"header": "rdrawing.h",
|
||||
"links": "-lrdrawing"
|
||||
},
|
||||
{
|
||||
"header": "rturtle.h",
|
||||
"links": "-lrturtle"
|
||||
},
|
||||
{
|
||||
"header": "thread",
|
||||
"links": "-lpthread"
|
||||
|
|
|
@ -24,21 +24,42 @@
|
|||
"links": "-lglfw3 -lgdi32"
|
||||
},
|
||||
{
|
||||
"execUseUTF8": true,
|
||||
"header": "ege.h",
|
||||
"links": "-lgraphics -luuid -lmsimg32 -lgdi32 -limm32 -lole32 -loleaut32 -lwinmm -lgdiplus"
|
||||
},
|
||||
{
|
||||
"header": "easyx.h",
|
||||
"links": "-leasyx"
|
||||
},
|
||||
{
|
||||
"execUseUTF8": true,
|
||||
"header": "fmt/core.h",
|
||||
"links": "-lfmt"
|
||||
},
|
||||
{
|
||||
"execUseUTF8": true,
|
||||
"header": "raylib.h",
|
||||
"links": "-lraylib -lopengl32 -lgdi32 -lwinmm"
|
||||
},
|
||||
{
|
||||
"execUseUTF8": false,
|
||||
"header": "tinyfiledialogs.h",
|
||||
"links": "-ltinyfiledialogs -lcomdlg32 -lole32"
|
||||
},
|
||||
{
|
||||
"header": "winsock2.h",
|
||||
"links": "-lws2_32"
|
||||
"header": "rdrawing.h",
|
||||
"links": "-lrdrawing"
|
||||
},
|
||||
{
|
||||
"header": "windows.h",
|
||||
"links": "-lgdi32 -luser32 -lkernel32 -ladvapi32"
|
||||
"header": "rturtle.h",
|
||||
"links": "-lrturtle"
|
||||
},
|
||||
{
|
||||
"header": "turtle.h",
|
||||
"links": "-lturtle"
|
||||
},
|
||||
{
|
||||
"header": "winsock2.h",
|
||||
"links": "-lws2_32"
|
||||
}
|
||||
]
|
||||
|
|
|
@ -2795,7 +2795,6 @@ bool Settings::CompilerSet::canMake() const
|
|||
|
||||
bool Settings::CompilerSet::canDebug() const
|
||||
{
|
||||
return false;
|
||||
#ifdef ENABLE_SDCC
|
||||
if (mCompilerType==CompilerType::SDCC)
|
||||
return false;
|
||||
|
@ -3250,11 +3249,9 @@ void Settings::CompilerSets::findSets()
|
|||
#ifdef Q_OS_WIN
|
||||
pathList = QStringList{
|
||||
mSettings->dirs().appDir() + "/clang64/bin",
|
||||
mSettings->dirs().appDir() + "/clang/bin",
|
||||
mSettings->dirs().appDir() + "/mingw64/bin",
|
||||
mSettings->dirs().appDir() + "/mingw32/bin",
|
||||
mSettings->dirs().appDir() + "/nuwen/bin",
|
||||
};// + pathList;
|
||||
} + pathList;
|
||||
#endif
|
||||
QString folder, canonicalFolder;
|
||||
for (int i=pathList.count()-1;i>=0;i--) {
|
||||
|
@ -6229,12 +6226,12 @@ void Settings::UI::setShowStructure(bool newShowStructure)
|
|||
|
||||
bool Settings::UI::showWatch() const
|
||||
{
|
||||
return false;
|
||||
return mShowWatch;
|
||||
}
|
||||
|
||||
void Settings::UI::setShowWatch(bool newShowWatch)
|
||||
{
|
||||
mShowWatch = false;
|
||||
mShowWatch = newShowWatch;
|
||||
}
|
||||
|
||||
bool Settings::UI::showProject() const
|
||||
|
@ -6331,7 +6328,7 @@ void Settings::UI::doSave()
|
|||
saveValue("show_tool_windowbars", mShowToolWindowBars);
|
||||
|
||||
saveValue("show_project", mShowProject);
|
||||
saveValue("show_watch", false);
|
||||
saveValue("show_watch", mShowWatch);
|
||||
saveValue("show_structure", mShowStructure);
|
||||
saveValue("show_file", mShowFiles);
|
||||
saveValue("show_problem_set", mShowProblemSet);
|
||||
|
@ -6396,15 +6393,15 @@ void Settings::UI::doLoad()
|
|||
mShowStatusBar = boolValue("show_statusbar",true);
|
||||
mShowToolWindowBars = boolValue("show_tool_windowbars",true);
|
||||
|
||||
mShowProject = boolValue("show_project",false);
|
||||
mShowWatch = false;
|
||||
mShowProject = boolValue("show_project",true);
|
||||
mShowWatch = boolValue("show_watch",true);
|
||||
mShowStructure = boolValue("show_structure",true);
|
||||
mShowFiles = boolValue("show_file",true);
|
||||
mShowProblemSet = boolValue("show_problem_set",true);
|
||||
|
||||
mShowIssues = boolValue("show_issues",true);
|
||||
mShowCompileLog = boolValue("show_compile_log",true);
|
||||
mShowDebug = false;
|
||||
mShowDebug = boolValue("show_debug",true);
|
||||
mShowSearch = boolValue("show_search",true);
|
||||
mShowTODO = boolValue("show_todo",true);
|
||||
mShowBookmark = boolValue("show_bookmark",true);
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<source><h1>Red-Panda Dev-Cpp 7</h1></source>
|
||||
<translation type="vanished"><h1>能锚Cpp</h1></translation>
|
||||
<translation type="vanished"><h1>小熊猫Dev-Cpp 7</h1></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
|
@ -58,7 +58,7 @@ p, li { white-space: pre-wrap; }
|
|||
<location line="+6"/>
|
||||
<source><html><head/><body><h1 style=" margin-top:18px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:xx-large; font-weight:600;">Red Panda C++</span></h1></body></html></source>
|
||||
<oldsource><html><head/><body><h1 style=" margin-top:18px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:xx-large; font-weight:600;">Red-Panda C++</span></h1></body></html></oldsource>
|
||||
<translation><html><head/><body><h1 style=" margin-top:18px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:xx-large; font-weight:600;">能锚C++</span></h1></body></html></translation>
|
||||
<translation><html><head/><body><h1 style=" margin-top:18px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:xx-large; font-weight:600;">小熊猫C++</span></h1></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+15"/>
|
||||
|
@ -91,7 +91,7 @@ p, li { white-space: pre-wrap; }
|
|||
<message>
|
||||
<source>Red Panda Dev-C++ (<=6.7.5):</source>
|
||||
<oldsource>Red Panda Dev-C++:</oldsource>
|
||||
<translation type="vanished">能锚Cpp (<=6.7.5):</translation>
|
||||
<translation type="vanished">小熊猫Dev-C++ (<=6.7.5):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+16"/>
|
||||
|
@ -1094,7 +1094,7 @@ p, li { white-space: pre-wrap; }
|
|||
<message>
|
||||
<location line="-8"/>
|
||||
<source>Red Panda C++ will clear previously found compiler list and search for compilers in the following locations:<br /> '%1'<br /> '%2'<br />Do you really want to continue?</source>
|
||||
<translation>能锚C++ 将会清除以前搜索到的编译器配置列表,然后在下列文件夹中搜索编译器:<br/> '%1'<br/> '%2'<br />你确定要继续吗?</translation>
|
||||
<translation>小熊猫C++ 将会清除以前搜索到的编译器配置列表,然后在下列文件夹中搜索编译器:<br/> '%1'<br/> '%2'<br />你确定要继续吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>ANSI</source>
|
||||
|
@ -1113,7 +1113,7 @@ p, li { white-space: pre-wrap; }
|
|||
<message>
|
||||
<location line="+238"/>
|
||||
<source>Red Panda C++ will clear previously found compiler list and search for compilers in the the PATH. <br />Do you really want to continue?</source>
|
||||
<translation>能锚C++ 将会清除以前搜索到的编译器配置列表,然后在PATH路径中搜索gcc编译器.<br />你确定要继续吗?</translation>
|
||||
<translation>小熊猫C++ 将会清除以前搜索到的编译器配置列表,然后在PATH路径中搜索gcc编译器.<br />你确定要继续吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
|
@ -1268,7 +1268,7 @@ p, li { white-space: pre-wrap; }
|
|||
<location line="+33"/>
|
||||
<source><html><head/><body><p>Red Panda C++'s Makefile has two important targets:</p><p>- all (which builds the executable)</p><p>- clean (which cleans up object files)</p><p><br/>&quot;all&quot; depends on 2 targets: all-before and all-after. All-before</p><p>gets called before the compilation process, and all-after gets</p><p>called after the compilation process.</p><p><br/>&quot;clean&quot; depends on the target clean-custom, which gets called</p><p>before the cleaning process.<br/></p><p>You can change the Makefile's behavior by defining the targets</p><p>that &quot;all&quot; and &quot;clean&quot; depend on.</p></body></html></source>
|
||||
<oldsource><html><head/><body><p>Red Panda Dev-C++'s Makefile has two important targets:</p><p>- all (which builds the executable)</p><p>- clean (which cleans up object files)</p><p><br/>&quot;all&quot; depends on 2 targets: all-before and all-after. All-before</p><p>gets called before the compilation process, and all-after gets</p><p>called after the compilation process.</p><p><br/>&quot;clean&quot; depends on the target clean-custom, which gets called</p><p>before the cleaning process.<br/></p><p>You can change the Makefile's behavior by defining the targets</p><p>that &quot;all&quot; and &quot;clean&quot; depend on.</p></body></html></oldsource>
|
||||
<translation><html><head/><body><p>能锚C++的Makefile包括两个重要的目标(target):</p><p>- all (用来构建可执行文件)</p><p>- clean (用来清理构建文件)</p><p><br/>&quot;all&quot; 依赖于2个目标:all-before 和all-after. </p><p>构建前会调用all-before目标,构建后会调用all-after目标。</p><p><br/>&quot;clean&quot; 依赖于目标clean-custom, 它在执行清理前被调用。<br/></p><p>你可以通过自定义这些目标来改变构建行为。</p></body></html></translation>
|
||||
<translation><html><head/><body><p>小熊猫C++的Makefile包括两个重要的目标(target):</p><p>- all (用来构建可执行文件)</p><p>- clean (用来清理构建文件)</p><p><br/>&quot;all&quot; 依赖于2个目标:all-before 和all-after. </p><p>构建前会调用all-before目标,构建后会调用all-after目标。</p><p><br/>&quot;clean&quot; 依赖于目标clean-custom, 它在执行清理前被调用。<br/></p><p>你可以通过自定义这些目标来改变构建行为。</p></body></html></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -2744,12 +2744,12 @@ p, li { white-space: pre-wrap; }
|
|||
<message>
|
||||
<location line="+6"/>
|
||||
<source>Independent Red Panda C++ applications</source>
|
||||
<translation>独立的能锚C++程序进程</translation>
|
||||
<translation>独立的小熊猫C++程序进程</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+7"/>
|
||||
<source>The same Red Panda C++ application</source>
|
||||
<translation>同一个能锚C++程序进程</translation>
|
||||
<translation>同一个小熊猫C++程序进程</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+10"/>
|
||||
|
@ -2760,7 +2760,7 @@ p, li { white-space: pre-wrap; }
|
|||
<location line="+16"/>
|
||||
<source>Just check or uncheck for which file types Red Panda C++ wil be registered as the default application to open them ... </source>
|
||||
<oldsource>Just check or uncheck for which file types RedPand C++ wil be registered as the default application to open them ... </oldsource>
|
||||
<translation>选择想要使用能锚C++打开的文件类型(可能需要管理员权限)</translation>
|
||||
<translation>选择想要使用小熊猫C++打开的文件类型(可能需要管理员权限)</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -4570,17 +4570,17 @@ p, li { white-space: pre-wrap; }
|
|||
<message>
|
||||
<location line="+1"/>
|
||||
<source>Path to the Red Panda C++'s executable file.</source>
|
||||
<translation>能锚C++可执行文件的完整路径</translation>
|
||||
<translation>小熊猫C++可执行文件的完整路径</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+1"/>
|
||||
<source>Version of the Red Panda C++</source>
|
||||
<translation>能锚C++的版本</translation>
|
||||
<translation>小熊猫C++的版本</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+1"/>
|
||||
<source>PATH to the Red Panda C++'s installation folder.</source>
|
||||
<translation>能锚C++的安装文件夹</translation>
|
||||
<translation>小熊猫C++的安装文件夹</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+1"/>
|
||||
|
@ -4659,7 +4659,7 @@ p, li { white-space: pre-wrap; }
|
|||
<location filename="../mainwindow.ui" line="+14"/>
|
||||
<location filename="../mainwindow.cpp" line="+1322"/>
|
||||
<source>Red Panda C++</source>
|
||||
<translation>能锚C++</translation>
|
||||
<translation>小熊猫C++</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+933"/>
|
||||
|
@ -7372,7 +7372,7 @@ p, li { white-space: pre-wrap; }
|
|||
</message>
|
||||
<message>
|
||||
<source>Red panda Dev-C++ project file (*.dev)</source>
|
||||
<translation type="vanished">能锚Dev-C++项目文件 (*.dev)</translation>
|
||||
<translation type="vanished">小熊猫Dev-C++项目文件 (*.dev)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="-2165"/>
|
||||
|
@ -7487,7 +7487,7 @@ p, li { white-space: pre-wrap; }
|
|||
<message>
|
||||
<location line="+1130"/>
|
||||
<source>Red Panda C++ project file (*.dev)</source>
|
||||
<translation>能锚C++项目文件(*.dev)</translation>
|
||||
<translation>小熊猫C++项目文件(*.dev)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+1021"/>
|
||||
|
@ -7626,7 +7626,7 @@ p, li { white-space: pre-wrap; }
|
|||
<message>
|
||||
<location line="+0"/>
|
||||
<source>Keep it open?</source>
|
||||
<translation>是否保持它在能锚C++中打开的编辑窗口?</translation>
|
||||
<translation>是否保持它在小熊猫C++中打开的编辑窗口?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+135"/>
|
||||
|
@ -8247,7 +8247,7 @@ p, li { white-space: pre-wrap; }
|
|||
<location line="+1"/>
|
||||
<source>The compiler settings format of Red Panda C++ has changed.</source>
|
||||
<oldsource>The compiler settings format of Dev-C++ has changed.</oldsource>
|
||||
<translation>能锚C++的编译器设置格式已发生改变。</translation>
|
||||
<translation>小熊猫C++的编译器设置格式已发生改变。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location line="+2"/>
|
||||
|
@ -8273,7 +8273,7 @@ p, li { white-space: pre-wrap; }
|
|||
<location line="+94"/>
|
||||
<source>Developed using the Red Panda C++ IDE</source>
|
||||
<oldsource>Developed using the Red Panda Dev-C++ IDE</oldsource>
|
||||
<translation>使用能锚C++编辑器开发</translation>
|
||||
<translation>使用小熊猫C++编辑器开发</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -9352,7 +9352,7 @@ p, li { white-space: pre-wrap; }
|
|||
<message>
|
||||
<location filename="../settings.cpp" line="+3388"/>
|
||||
<source>Would you like Red Panda C++ to search for compilers in PATH?</source>
|
||||
<translation>您同意能锚C++在PATH路径中寻找gcc编译器吗?</translation>
|
||||
<translation>您同意小熊猫C++在PATH路径中寻找gcc编译器吗?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../compiler/compilerinfo.cpp" line="+1"/>
|
||||
|
@ -9580,7 +9580,7 @@ p, li { white-space: pre-wrap; }
|
|||
</message>
|
||||
<message>
|
||||
<source>Would you like Red Panda C++ to remove them for you and add the default paths to the valid paths?</source>
|
||||
<translation type="vanished">是否让能锚C++删除这些配置,并尝试重新建立配置?</translation>
|
||||
<translation type="vanished">是否让小熊猫C++删除这些配置,并尝试重新建立配置?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Leaving those directories will lead to problems during compilation.<br /><br />Unless you know exactly what you're doing, it is recommended that you click Yes.</source>
|
||||
|
@ -9595,7 +9595,7 @@ p, li { white-space: pre-wrap; }
|
|||
<message>
|
||||
<location line="-4"/>
|
||||
<source>Would you like Red Panda C++ to search for compilers in the following locations: <BR />'%1'<BR />'%2'? </source>
|
||||
<translation>您需要能锚C++在下列位置搜索编译器吗:<br />%1<br />%2</translation>
|
||||
<translation>您需要小熊猫C++在下列位置搜索编译器吗:<br />%1<br />%2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settingsdialog/compilersetoptionwidget.cpp" line="-452"/>
|
||||
|
|
|
@ -93,5 +93,3 @@ win32: {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
QT += core5compat
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
APP_VERSION="1.0"
|
||||
APP_VERSION="3.2"
|
||||
APP_VERSION_SUFFIX="alpha"
|
||||
|
|
Loading…
Reference in New Issue