From 5ae52b3b6cdbe914d947c99b2d2f8a533ac94f5c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Sun, 25 Jan 2009 17:48:38 +0000 Subject: [PATCH] remove the no longer used GuiNote git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28281 a592a061-630c-0410-9148-cb99ea01b6c8 --- development/scons/scons_manifest.py | 3 - src/frontends/qt4/GuiNote.cpp | 101 ---------------------------- src/frontends/qt4/GuiNote.h | 50 -------------- src/frontends/qt4/GuiView.cpp | 5 +- src/frontends/qt4/Makefile.am | 2 - src/frontends/qt4/ui/compile_uic.sh | 1 - 6 files changed, 1 insertion(+), 161 deletions(-) delete mode 100644 src/frontends/qt4/GuiNote.cpp delete mode 100644 src/frontends/qt4/GuiNote.h diff --git a/development/scons/scons_manifest.py b/development/scons/scons_manifest.py index 6815e591b8..4498513b72 100644 --- a/development/scons/scons_manifest.py +++ b/development/scons/scons_manifest.py @@ -729,7 +729,6 @@ src_frontends_qt4_header_files = Split(''' GuiLog.h GuiMathMatrix.h GuiNomencl.h - GuiNote.h GuiPainter.h GuiParagraph.h GuiPrefs.h @@ -820,7 +819,6 @@ src_frontends_qt4_files = Split(''' GuiLog.cpp GuiMathMatrix.cpp GuiNomencl.cpp - GuiNote.cpp GuiPainter.cpp GuiParagraph.cpp GuiPrefs.cpp @@ -906,7 +904,6 @@ src_frontends_qt4_ui_files = Split(''' MathsUi.ui ModulesUi.ui NomenclUi.ui - NoteUi.ui NumberingUi.ui PageLayoutUi.ui ParagraphUi.ui diff --git a/src/frontends/qt4/GuiNote.cpp b/src/frontends/qt4/GuiNote.cpp deleted file mode 100644 index adbb6e7425..0000000000 --- a/src/frontends/qt4/GuiNote.cpp +++ /dev/null @@ -1,101 +0,0 @@ -/** - * \file GuiNote.cpp - * This file is part of LyX, the document processor. - * Licence details can be found in the file COPYING. - * - * \author Angus Leeming - * \author Jürgen Spitzmüller - * - * Full author contact details are available in file CREDITS. - */ - -#include - -#include "GuiNote.h" -#include "FuncRequest.h" -#include "support/gettext.h" - -#include "insets/InsetNote.h" - -using namespace std; - -namespace lyx { -namespace frontend { - -GuiNote::GuiNote(GuiView & lv) - : GuiDialog(lv, "note", qt_("Note Settings")) -{ - setupUi(this); - - connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK())); - connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose())); - - connect(noteRB, SIGNAL(clicked()), this, SLOT(change_adaptor())); - connect(greyedoutRB, SIGNAL(clicked()), this, SLOT(change_adaptor())); - connect(commentRB, SIGNAL(clicked()), this, SLOT(change_adaptor())); - - bc().setPolicy(ButtonPolicy::NoRepeatedApplyReadOnlyPolicy); - bc().setOK(okPB); - bc().setCancel(closePB); -} - - -void GuiNote::change_adaptor() -{ - changed(); -} - - -void GuiNote::updateContents() -{ - switch (params_.type) { - case InsetNoteParams::Note: - noteRB->setChecked(true); - break; - case InsetNoteParams::Comment: - commentRB->setChecked(true); - break; - case InsetNoteParams::Greyedout: - greyedoutRB->setChecked(true); - break; - } -} - - -void GuiNote::applyView() -{ - if (greyedoutRB->isChecked()) - params_.type = InsetNoteParams::Greyedout; - else if (commentRB->isChecked()) - params_.type = InsetNoteParams::Comment; - else - params_.type = InsetNoteParams::Note; -} - - -bool GuiNote::initialiseParams(string const & data) -{ - InsetNote::string2params(data, params_); - return true; -} - - -void GuiNote::clearParams() -{ - params_ = InsetNoteParams(); -} - - -void GuiNote::dispatchParams() -{ - dispatch(FuncRequest(getLfun(), InsetNote::params2string(params_))); -} - - -Dialog * createGuiNote(GuiView & lv) { return new GuiNote(lv); } - - -} // namespace frontend -} // namespace lyx - -#include "moc_GuiNote.cpp" diff --git a/src/frontends/qt4/GuiNote.h b/src/frontends/qt4/GuiNote.h deleted file mode 100644 index a53f55e023..0000000000 --- a/src/frontends/qt4/GuiNote.h +++ /dev/null @@ -1,50 +0,0 @@ -// -*- C++ -*- -/** - * \file GuiNote.h - * This file is part of LyX, the document processor. - * Licence details can be found in the file COPYING. - * - * \author Jürgen Spitzmüller - * - * Full author contact details are available in file CREDITS. - */ - -#ifndef GUINOTE_H -#define GUINOTE_H - -#include "GuiDialog.h" -#include "insets/InsetNote.h" -#include "ui_NoteUi.h" - -namespace lyx { -namespace frontend { - -class GuiNote : public GuiDialog, public Ui::NoteUi -{ - Q_OBJECT -public: - GuiNote(GuiView & lv); -private Q_SLOTS: - void change_adaptor(); -private: - /// Apply changes - void applyView(); - /// Update dialog before showing it - void updateContents(); - /// - bool initialiseParams(std::string const & data); - /// - void clearParams(); - /// - void dispatchParams(); - /// - bool isBufferDependent() const { return true; } -private: - /// - InsetNoteParams params_; -}; - -} // namespace frontend -} // namespace lyx - -#endif // GUINOTE_H diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index b28eb0cd39..646039def6 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -2299,7 +2299,7 @@ char const * const dialognames[] = { "aboutlyx", "bibitem", "bibtex", "box", "branch", "changes", "character", "citation", "document", "errorlist", "ert", "external", "file", "findreplace", "float", "graphics", "include", "index", "info", "nomenclature", "label", "log", -"mathdelimiter", "mathmatrix", "mathspace", "note", "paragraph", "prefs", "print", +"mathdelimiter", "mathmatrix", "mathspace", "paragraph", "prefs", "print", "ref", "sendto", "space", "spellchecker", "symbols", "tabular", "tabularcreate", #ifdef HAVE_LIBAIKSAURUS @@ -2488,7 +2488,6 @@ Dialog * createGuiLog(GuiView & lv); Dialog * createGuiMathHSpace(GuiView & lv); Dialog * createGuiMathMatrix(GuiView & lv); Dialog * createGuiNomenclature(GuiView & lv); -Dialog * createGuiNote(GuiView & lv); Dialog * createGuiParagraph(GuiView & lv); Dialog * createGuiPreferences(GuiView & lv); Dialog * createGuiPrint(GuiView & lv); @@ -2567,8 +2566,6 @@ Dialog * GuiView::build(string const & name) return createGuiMathHSpace(*this); if (name == "mathmatrix") return createGuiMathMatrix(*this); - if (name == "note") - return createGuiNote(*this); if (name == "paragraph") return createGuiParagraph(*this); if (name == "prefs") diff --git a/src/frontends/qt4/Makefile.am b/src/frontends/qt4/Makefile.am index a9e328dd94..5238a83eff 100644 --- a/src/frontends/qt4/Makefile.am +++ b/src/frontends/qt4/Makefile.am @@ -97,7 +97,6 @@ SOURCEFILES = \ GuiLog.cpp \ GuiMathMatrix.cpp \ GuiNomencl.cpp \ - GuiNote.cpp \ GuiPainter.cpp \ GuiParagraph.cpp \ GuiPrefs.cpp \ @@ -191,7 +190,6 @@ MOCHEADER = \ GuiLog.h \ GuiMathMatrix.h \ GuiNomencl.h \ - GuiNote.h \ GuiParagraph.h \ GuiPrefs.h \ GuiPrint.h \ diff --git a/src/frontends/qt4/ui/compile_uic.sh b/src/frontends/qt4/ui/compile_uic.sh index b8f2763ce3..e7a5776b4e 100644 --- a/src/frontends/qt4/ui/compile_uic.sh +++ b/src/frontends/qt4/ui/compile_uic.sh @@ -27,7 +27,6 @@ uic MarginsUi.ui -o MarginsUi.h uic MathMatrixUi.ui -o MathMatrixUi.h uic MathsUi.ui -o MathsUi.h uic ModulesUi.ui -o ModulesUi.h -uic NoteUi.ui -o NoteUi.h uic NumberingUi.ui -o NumberingUi.h uic PageLayoutUi.ui -o PageLayoutUi.h uic ParagraphUi.ui -o ParagraphUi.h -- 2.39.2