RedPanda-CPP/RedPandaIDE/editorlist.cpp

337 lines
9.6 KiB
C++
Raw Normal View History

2021-04-06 23:10:57 +08:00
#include "editorlist.h"
2021-04-07 21:13:15 +08:00
#include "editor.h"
2021-04-09 10:08:05 +08:00
#include <QMessageBox>
2021-04-07 22:44:08 +08:00
#include <QVariant>
2021-04-09 10:08:05 +08:00
#include <mainwindow.h>
2021-06-23 22:38:02 +08:00
#include <QFileInfo>
2021-08-01 23:24:37 +08:00
#include "settings.h"
2021-09-12 00:17:15 +08:00
#include "project.h"
2021-04-06 23:10:57 +08:00
2021-04-07 21:13:15 +08:00
EditorList::EditorList(QTabWidget* leftPageWidget,
QTabWidget* rightPageWidget,
QSplitter* splitter,
QWidget* panel):
2021-09-12 00:17:15 +08:00
mLayout(LayoutShowType::lstLeft),
2021-04-07 21:13:15 +08:00
mLeftPageWidget(leftPageWidget),
mRightPageWidget(rightPageWidget),
mSplitter(splitter),
mPanel(panel),
mUpdateCount(0)
2021-04-06 23:10:57 +08:00
{
}
2021-04-07 21:13:15 +08:00
Editor* EditorList::newEditor(const QString& filename, const QByteArray& encoding,
2021-04-07 21:13:15 +08:00
bool inProject, bool newFile,
QTabWidget* page) {
QTabWidget * parentPageControl = NULL;
if (page == NULL)
parentPageControl = getNewEditorPageControl();
2021-04-07 21:13:15 +08:00
else
parentPageControl = page;
if (fileExists(filename)) {
pMainWindow->fileSystemWatcher()->addPath(filename);
}
2021-09-12 00:17:15 +08:00
Editor * e = new Editor(parentPageControl,filename,encoding,inProject,newFile,parentPageControl);
2021-09-07 16:49:35 +08:00
updateLayout();
2021-09-12 00:17:15 +08:00
return e;
2021-04-07 21:13:15 +08:00
}
2021-04-09 10:08:05 +08:00
QTabWidget* EditorList::getNewEditorPageControl() const {
2021-04-07 21:13:15 +08:00
//todo: return widget depends on layout
return mLeftPageWidget;
}
2021-04-09 10:08:05 +08:00
QTabWidget* EditorList::getFocusedPageControl() const {
//todo:
return mLeftPageWidget;
}
2021-09-07 16:49:35 +08:00
void EditorList::showLayout(LayoutShowType layout)
{
if (layout == mLayout)
return;
mLayout = layout;
// Apply widths if layout does not change
switch(mLayout) {
case LayoutShowType::lstLeft:
case LayoutShowType::lstNone:
mLeftPageWidget->setVisible(true);
mRightPageWidget->setVisible(false);
break;
case LayoutShowType::lstRight:
mLeftPageWidget->setVisible(false);
mRightPageWidget->setVisible(true);
break;
case LayoutShowType::lstBoth:
mLeftPageWidget->setVisible(true);
mRightPageWidget->setVisible(true);
}
}
Editor* EditorList::getEditor(int index, QTabWidget* tabsWidget) const {
2021-04-07 22:44:08 +08:00
QTabWidget* selectedWidget;
if (tabsWidget == NULL) {
2021-04-09 10:08:05 +08:00
selectedWidget = getFocusedPageControl(); // todo: get focused widget
2021-04-07 22:44:08 +08:00
} else {
selectedWidget = tabsWidget;
}
if (index == -1) {
2021-04-09 10:08:05 +08:00
index = selectedWidget->currentIndex();
2021-04-07 22:44:08 +08:00
}
2021-04-09 10:08:05 +08:00
if (index<0 || index >= selectedWidget->count()) {
return NULL;
}
2021-04-09 17:48:25 +08:00
return (Editor*)selectedWidget->widget(index);
2021-04-07 22:44:08 +08:00
}
bool EditorList::closeEditor(Editor* editor, bool transferFocus, bool force) {
beginUpdate();
auto end = finally([this] {
this->endUpdate();
});
2021-04-09 10:08:05 +08:00
if (editor == NULL)
return false;
if (force) {
editor->save(true,false);
2021-05-24 00:41:00 +08:00
} else if ( (editor->modified()) && (!editor->empty())) {
2021-04-09 10:08:05 +08:00
// ask user if he wants to save
QMessageBox::StandardButton reply;
reply = QMessageBox::question(pMainWindow,QObject::tr("Save"),
QString(QObject::tr("Save changes to %1?")).arg(editor->filename()),
2021-04-09 10:08:05 +08:00
QMessageBox::Yes|QMessageBox::No|QMessageBox::Cancel);
if (reply == QMessageBox::Cancel) {
return false;
} else if (reply == QMessageBox::Yes) {
if (!editor->save(false,false)) {
return false;
}
}
}
2021-04-09 17:48:25 +08:00
if (transferFocus && (editor->pageControl()->currentWidget()==editor)) {
//todo: activate & focus the previous editor
}
2021-04-09 10:08:05 +08:00
2021-09-12 00:17:15 +08:00
if (editor->inProject() && pMainWindow->project()) {
int projIndex = pMainWindow->project()->indexInUnits(editor);
if (projIndex>=0) {
pMainWindow->project()->closeUnit(projIndex);
}
} else {
if (pSettings->history().addToOpenedFiles(editor->filename())) {
pMainWindow->rebuildOpenedFileHisotryMenu();
}
delete editor;
2021-08-01 23:24:37 +08:00
}
2021-09-12 00:17:15 +08:00
updateLayout();
if (!force) {
editor = getEditor();
2021-08-23 21:50:53 +08:00
pMainWindow->updateClassBrowserForEditor(editor);
2021-09-12 00:17:15 +08:00
}
2021-04-07 22:44:08 +08:00
return true;
}
2021-04-09 10:08:05 +08:00
void EditorList::beginUpdate() {
if (mUpdateCount==0) {
mPanel->setUpdatesEnabled(false);
}
mUpdateCount++;
}
void EditorList::endUpdate() {
mUpdateCount--;
if (mUpdateCount==0) {
mPanel->setUpdatesEnabled(true);
mPanel->update();
}
}
2021-06-07 11:02:03 +08:00
void EditorList::applySettings()
{
for (int i=0;i<mLeftPageWidget->count();i++) {
Editor* e = static_cast<Editor*>(mLeftPageWidget->widget(i));
e->applySettings();
}
for (int i=0;i<mRightPageWidget->count();i++) {
Editor* e = static_cast<Editor*>(mRightPageWidget->widget(i));
e->applySettings();
}
}
2021-06-20 14:30:47 +08:00
void EditorList::applyColorSchemes(const QString& name)
{
for (int i=0;i<mLeftPageWidget->count();i++) {
Editor* e = static_cast<Editor*>(mLeftPageWidget->widget(i));
e->applyColorScheme(name);
}
for (int i=0;i<mRightPageWidget->count();i++) {
Editor* e = static_cast<Editor*>(mRightPageWidget->widget(i));
e->applyColorScheme(name);
}
}
2021-06-23 22:38:02 +08:00
bool EditorList::isFileOpened(const QString &name)
{
QFileInfo fileInfo(name);
QString filename = fileInfo.absoluteFilePath();
for (int i=0;i<mLeftPageWidget->count();i++) {
Editor* e = static_cast<Editor*>(mLeftPageWidget->widget(i));
2021-06-24 20:43:09 +08:00
if (e->filename().compare(filename)==0 || e->filename().compare(name)==0)
2021-06-23 22:38:02 +08:00
return true;
}
for (int i=0;i<mRightPageWidget->count();i++) {
Editor* e = static_cast<Editor*>(mRightPageWidget->widget(i));
2021-06-24 20:43:09 +08:00
if (e->filename().compare(filename)==0 || e->filename().compare(name)==0)
2021-06-23 22:38:02 +08:00
return true;
}
return false;
}
2021-07-26 00:22:08 +08:00
int EditorList::pageCount()
{
return mLeftPageWidget->count()+mRightPageWidget->count();
}
void EditorList::selectNextPage()
{
QTabWidget * pageControl = getFocusedPageControl();
if (pageControl && pageControl->count()>0) {
pageControl->setCurrentIndex(
(pageControl->currentIndex()+1) % pageControl->count()
);
}
}
void EditorList::selectPreviousPage()
{
QTabWidget * pageControl = getFocusedPageControl();
if (pageControl && pageControl->count()>0) {
pageControl->setCurrentIndex(
(pageControl->currentIndex()+pageControl->count()-1) % pageControl->count()
);
}
}
2021-07-26 00:22:08 +08:00
Editor *EditorList::operator[](int index)
{
if (index>=0 && index<mLeftPageWidget->count()) {
return static_cast<Editor*>(mLeftPageWidget->widget(index));
}
index -= mLeftPageWidget->count();
if (index>=0 && index<mRightPageWidget->count()) {
return static_cast<Editor*>(mRightPageWidget->widget(index));
}
return nullptr;
}
2021-04-09 10:08:05 +08:00
bool EditorList::closeAll(bool force) {
beginUpdate();
auto end = finally([this] {
this->endUpdate();
});
2021-04-09 17:48:25 +08:00
while (mLeftPageWidget->count()>0) {
if (!closeEditor(getEditor(0,mLeftPageWidget),false,force)) {
return false;
}
}
while (mRightPageWidget->count()>0) {
if (!closeEditor(getEditor(0,mRightPageWidget),false,force)) {
return false;
}
}
2021-04-09 10:08:05 +08:00
2021-04-09 17:48:25 +08:00
return true;
2021-04-09 10:08:05 +08:00
}
2021-04-11 21:33:08 +08:00
2021-09-07 16:49:35 +08:00
void EditorList::forceCloseEditor(Editor *editor)
{
beginUpdate();
delete editor;
// Force layout update when creating, destroying or moving editors
updateLayout();
endUpdate();
}
2021-04-29 20:54:44 +08:00
Editor* EditorList::getOpenedEditorByFilename(const QString &filename)
2021-04-11 21:33:08 +08:00
{
if (filename.isEmpty())
return nullptr;
QFileInfo fileInfo(filename);
QString fullname = fileInfo.absoluteFilePath();
2021-04-11 21:33:08 +08:00
for (int i=0;i<mLeftPageWidget->count();i++) {
Editor* e = static_cast<Editor*>(mLeftPageWidget->widget(i));
2021-06-24 20:43:09 +08:00
if (e->filename().compare(filename)==0 || e->filename().compare(fullname)==0) {
2021-04-11 21:33:08 +08:00
return e;
}
}
for (int i=0;i<mRightPageWidget->count();i++) {
Editor* e = static_cast<Editor*>(mRightPageWidget->widget(i));
2021-06-24 20:43:09 +08:00
if (e->filename().compare(filename)==0 || e->filename().compare(fullname)==0) {
2021-04-11 21:33:08 +08:00
return e;
}
}
return nullptr;
}
2021-04-29 20:54:44 +08:00
Editor *EditorList::getEditorByFilename(const QString &filename)
{
if (filename.isEmpty())
return nullptr;
2021-04-29 20:54:44 +08:00
//check if an editor is already openned
2021-06-24 20:43:09 +08:00
Editor* e=getOpenedEditorByFilename(filename);
2021-04-29 20:54:44 +08:00
if (e!=nullptr)
return e;
//Todo: check if is in the project
//Create a new editor
2021-06-24 20:43:09 +08:00
QFileInfo fileInfo(filename);
QString fullname = fileInfo.absoluteFilePath();
if (fileInfo.exists())
return newEditor(fullname,ENCODING_AUTO_DETECT,false,false);
return nullptr;
2021-04-29 20:54:44 +08:00
}
2021-08-23 10:16:06 +08:00
bool EditorList::getContentFromOpenedEditor(const QString &filename, QStringList &buffer)
{
Editor * e= getOpenedEditorByFilename(filename);
if (!e)
return false;
buffer = e->contents();
2021-08-23 10:16:06 +08:00
return true;
}
2021-09-07 16:49:35 +08:00
2021-09-11 09:21:44 +08:00
void EditorList::getVisibleEditors(Editor *&left, Editor *&right)
{
switch(mLayout) {
case LayoutShowType::lstNone:
left = nullptr;
right = nullptr;
break;
case LayoutShowType::lstLeft:
left = getEditor(-1,mLeftPageWidget);
right = nullptr;
break;
case LayoutShowType::lstRight:
left = nullptr;
right = getEditor(-1,mRightPageWidget);
break;
case LayoutShowType::lstBoth:
left = getEditor(-1,mLeftPageWidget);
right = getEditor(-1,mRightPageWidget);
break;
}
}
2021-09-07 16:49:35 +08:00
void EditorList::updateLayout()
{
if (mLeftPageWidget->count() ==0 && mRightPageWidget->count() == 0)
showLayout(LayoutShowType::lstNone);
else if (mLeftPageWidget->count() > 0 && mRightPageWidget->count() == 0)
showLayout(LayoutShowType::lstLeft);
else if (mLeftPageWidget->count() ==0 && mRightPageWidget->count() > 0)
showLayout(LayoutShowType::lstRight);
else
showLayout(LayoutShowType::lstBoth);
}