qtchar.diff

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1662 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2001-03-05 10:16:03 +00:00
parent 7f1781d623
commit 078e4c896c
7 changed files with 34 additions and 4 deletions

View File

@ -1,3 +1,12 @@
2001-02-16 Edwin Leuven <leuven@fee.uva.nl>
* remove inheritance from noncopyable in Form*.h
* Character dialog added:
* FormCharacter.[Ch]
* chardlg.ui
* chardlg.[Ch]
* chardlgimpl.[Ch]
2001-02-16 John Levon <moz@compsoc.man.ac.uk>
* FormParagraph.C: fix bview->update()

View File

@ -12,6 +12,7 @@
#include <config.h>
#include "Dialogs.h"
#include "FormCharacter.h"
#include "FormCitation.h"
#include "FormCopyright.h"
#include "FormDocument.h"
@ -44,6 +45,7 @@ Signal0<void> Dialogs::redrawGUI;
Dialogs::Dialogs(LyXView * lv)
{
dialogs_.push_back(new FormCharacter(lv, this));
dialogs_.push_back(new FormCitation(lv, this));
dialogs_.push_back(new FormCopyright(lv, this));
dialogs_.push_back(new FormDocument(lv, this));

View File

@ -28,7 +28,7 @@ class FormCopyrightDialog;
/**
@author Jürgen Vigna
*/
class FormCopyright : public DialogBase, public noncopyable {
class FormCopyright : public DialogBase {
public:
FormCopyright(LyXView *, Dialogs *);
~FormCopyright();

View File

@ -17,7 +17,7 @@ class Dialogs;
class LyXView;
class ParagraphDlgImpl;
class FormParagraph : public DialogBase, public noncopyable {
class FormParagraph : public DialogBase {
public:
/**@name Constructors and Destructors */
//@{

View File

@ -19,7 +19,7 @@ class PrintDlgImpl;
using SigC::Connection;
#endif
class FormPrint : public DialogBase, public noncopyable {
class FormPrint : public DialogBase {
public:
/**@name Constructors and Destructors */
//@{

View File

@ -23,7 +23,7 @@ class Dialogs;
class LyXView;
class TabularCreateDlgImpl;
class FormTabularCreate : public DialogBase, public noncopyable {
class FormTabularCreate : public DialogBase {
public:
/**@name Constructors and Destructors */
//@{

View File

@ -11,6 +11,8 @@ CXXFLAGS= $(DEFINES)
# moc generated files
BUILTSOURCES = moc_FormCopyrightDialogBase.C \
moc_FormCopyrightDialog.C \
moc_chardlg.C \
moc_chardlgimpl.C \
moc_paragraphdlg.C \
moc_paragraphdlgimpl.C \
moc_printdlg.C \
@ -64,6 +66,12 @@ libqt2_la_SOURCES = \
$(BUILTSOURCES) \
Dialogs.C \
GUIRunTime.C \
FormCharacter.C \
FormCharacter.h \
chardlg.C \
chardlg.h \
chardlgimpl.C \
chardlgimpl.h \
FormCopyright.C \
FormCopyright.h \
FormCopyrightDialog.C \
@ -146,3 +154,14 @@ moc_tabularcreatedlgimpl.C: tabularcreatedlgimpl.h
$(MOC) -o $@ $<
moc_emptytable.C: emptytable.h
$(MOC) -o $@ $<
FormCharacter.C: chardlg.h
chardlg.h: chardlg.ui
$(UIC) -o $@ $<
chardlg.C: chardlg.ui
$(UIC) -impl chardlg.h -o $@ $<
moc_chardlg.C: chardlg.h
$(MOC) -o $@ $<
moc_chardlgimpl.C: chardlgimpl.h
$(MOC) -o $@ $<