mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 22:49:20 +00:00
various minor bits
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1834 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
12bfa2bd34
commit
833bd37843
@ -31,8 +31,8 @@ ControlCharacter::ControlCharacter(LyXView & lv, Dialogs & d)
|
|||||||
: ControlDialog<ControlConnectBD>(lv, d),
|
: ControlDialog<ControlConnectBD>(lv, d),
|
||||||
font_(0), toggleall_(false)
|
font_(0), toggleall_(false)
|
||||||
{
|
{
|
||||||
d.showLayoutCharacter.connect(slot(this, &ControlCharacter::show));
|
d_.showLayoutCharacter.connect(slot(this, &ControlCharacter::show));
|
||||||
d.setUserFreeFont.connect(slot(this, &ControlCharacter::apply));
|
d_.setUserFreeFont.connect(slot(this, &ControlCharacter::apply));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ private:
|
|||||||
/// Filter the inputs on callback from xforms
|
/// Filter the inputs on callback from xforms
|
||||||
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
||||||
|
|
||||||
/// Type definition from the fdesign produced header file.
|
/// Fdesign generated method
|
||||||
FD_form_bibitem * build_bibitem();
|
FD_form_bibitem * build_bibitem();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -37,7 +37,8 @@ private:
|
|||||||
virtual void update();
|
virtual void update();
|
||||||
/// Filter the inputs on callback from xforms
|
/// Filter the inputs on callback from xforms
|
||||||
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
||||||
///
|
|
||||||
|
/// Fdesign generated method
|
||||||
FD_form_bibtex * build_bibtex();
|
FD_form_bibtex * build_bibtex();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ private:
|
|||||||
combox is changed */
|
combox is changed */
|
||||||
static void ComboInputCB(int, void *, Combox *);
|
static void ComboInputCB(int, void *, Combox *);
|
||||||
|
|
||||||
/// Type definition from the fdesign produced header file.
|
/// Fdesign generated method
|
||||||
FD_form_character * build_character();
|
FD_form_character * build_character();
|
||||||
|
|
||||||
///
|
///
|
||||||
|
@ -50,7 +50,7 @@ private:
|
|||||||
/// Filter the inputs on callback from xforms
|
/// Filter the inputs on callback from xforms
|
||||||
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
|
||||||
|
|
||||||
/// Type definition from the fdesign produced header file.
|
/// Fdesign generated method
|
||||||
FD_form_citation * build_citation();
|
FD_form_citation * build_citation();
|
||||||
|
|
||||||
///
|
///
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* Copyright 2000-2001 The LyX Team.
|
* Copyright 2000-2001 The LyX Team.
|
||||||
* See the file COPYING.
|
* See the file COPYING.
|
||||||
*
|
*
|
||||||
* \author Allan Rae
|
* \author Allan Rae, rae@lyx.org
|
||||||
* \author Angus Leeming, a.leeming@.ac.uk
|
* \author Angus Leeming, a.leeming@.ac.uk
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ private:
|
|||||||
///
|
///
|
||||||
void bullets_apply();
|
void bullets_apply();
|
||||||
|
|
||||||
/// Typedefinitions from the fdesign produced Header file
|
/// Fdesign generated methods
|
||||||
FD_form_tabbed_document * build_tabbed_document();
|
FD_form_tabbed_document * build_tabbed_document();
|
||||||
///
|
///
|
||||||
FD_form_doc_paper * build_doc_paper();
|
FD_form_doc_paper * build_doc_paper();
|
||||||
|
@ -39,7 +39,8 @@ private:
|
|||||||
|
|
||||||
///
|
///
|
||||||
ButtonPolicy::SMInput inputBrowse();
|
ButtonPolicy::SMInput inputBrowse();
|
||||||
/// Type definition from the fdesign produced header file.
|
|
||||||
|
/// Fdesign generated method
|
||||||
FD_form_include * build_include();
|
FD_form_include * build_include();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -65,7 +65,7 @@ private:
|
|||||||
///
|
///
|
||||||
void extra_apply();
|
void extra_apply();
|
||||||
#endif
|
#endif
|
||||||
/// Typedefinitions from the fdesign produced Header file
|
/// Fdesign generated methods
|
||||||
FD_form_tabbed_paragraph * build_tabbed_paragraph();
|
FD_form_tabbed_paragraph * build_tabbed_paragraph();
|
||||||
///
|
///
|
||||||
FD_form_paragraph_general * build_paragraph_general();
|
FD_form_paragraph_general * build_paragraph_general();
|
||||||
|
@ -42,8 +42,8 @@ private:
|
|||||||
///
|
///
|
||||||
virtual FL_FORM * form() const;
|
virtual FL_FORM * form() const;
|
||||||
|
|
||||||
/// Typedefinitions from the fdesign produced Header file
|
/// Fdesign generated method
|
||||||
FD_form_preamble * build_preamble();
|
FD_form_preamble * build_preamble();
|
||||||
|
|
||||||
/// Real GUI implementation.
|
/// Real GUI implementation.
|
||||||
boost::scoped_ptr<FD_form_preamble> dialog_;
|
boost::scoped_ptr<FD_form_preamble> dialog_;
|
||||||
|
@ -100,7 +100,7 @@ private:
|
|||||||
std::pair<string,string> const & dir1,
|
std::pair<string,string> const & dir1,
|
||||||
std::pair<string,string> const & dir2 );
|
std::pair<string,string> const & dir2 );
|
||||||
|
|
||||||
/// Type definitions from the fdesign produced header file.
|
/// Fdesign generated methods
|
||||||
FD_form_preferences * build_preferences();
|
FD_form_preferences * build_preferences();
|
||||||
///
|
///
|
||||||
FD_form_outer_tab * build_outer_tab();
|
FD_form_outer_tab * build_outer_tab();
|
||||||
|
@ -42,7 +42,8 @@ private:
|
|||||||
|
|
||||||
///
|
///
|
||||||
void updateBrowser(std::vector<string> const &) const;
|
void updateBrowser(std::vector<string> const &) const;
|
||||||
/// Type definition from the fdesign produced header file.
|
|
||||||
|
/// Fdesign generated method
|
||||||
FD_form_ref * build_ref();
|
FD_form_ref * build_ref();
|
||||||
|
|
||||||
///
|
///
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
.SUFFIXES: .fd .c
|
.SUFFIXES: .fd .c
|
||||||
|
|
||||||
SRCS := form_bibitem.fd \
|
SRCS = form_bibitem.fd \
|
||||||
form_bibtex.fd \
|
form_bibtex.fd \
|
||||||
form_browser.fd \
|
form_browser.fd \
|
||||||
form_character.fd \
|
form_character.fd \
|
||||||
@ -49,7 +49,7 @@ SRCS := form_bibitem.fd \
|
|||||||
form_toc.fd \
|
form_toc.fd \
|
||||||
form_url.fd
|
form_url.fd
|
||||||
|
|
||||||
OBJS := $(SRCS:.fd=.C)
|
OBJS = $(SRCS:.fd=.C)
|
||||||
|
|
||||||
all:
|
all:
|
||||||
@echo "This is a makefile intended for the maintainer only."
|
@echo "This is a makefile intended for the maintainer only."
|
||||||
|
Loading…
Reference in New Issue
Block a user