mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Fix doxygen output for grouped items. Without the /name tag doxygen shows the group name as the name of the first item. Moreover, the comment styles are somewhat standardized.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33236 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b16e500d5c
commit
a4e03846cd
@ -23,14 +23,14 @@ public:
|
|||||||
AspellChecker();
|
AspellChecker();
|
||||||
~AspellChecker();
|
~AspellChecker();
|
||||||
|
|
||||||
/// SpellChecker inherited methods.
|
/// \name SpellChecker inherited methods
|
||||||
///@{
|
//@{
|
||||||
enum Result check(WordLangTuple const &);
|
enum Result check(WordLangTuple const &);
|
||||||
void suggest(WordLangTuple const &, docstring_list &);
|
void suggest(WordLangTuple const &, docstring_list &);
|
||||||
void insert(WordLangTuple const &);
|
void insert(WordLangTuple const &);
|
||||||
void accept(WordLangTuple const &);
|
void accept(WordLangTuple const &);
|
||||||
docstring const error();
|
docstring const error();
|
||||||
///@}
|
//@}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
struct Private;
|
struct Private;
|
||||||
|
@ -41,8 +41,8 @@ class Color
|
|||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
Color(ColorCode base_color = Color_none);
|
Color(ColorCode base_color = Color_none);
|
||||||
|
|
||||||
/// comparison operators.
|
/// \name Comparison operators
|
||||||
//@{
|
//@{
|
||||||
bool operator==(Color const & color) const;
|
bool operator==(Color const & color) const;
|
||||||
bool operator!=(Color const & color) const;
|
bool operator!=(Color const & color) const;
|
||||||
|
@ -82,7 +82,7 @@ public Q_SLOTS:
|
|||||||
void doStatusMessage();
|
void doStatusMessage();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/// QThread inherited methods
|
/// \name QThread inherited methods
|
||||||
//@{
|
//@{
|
||||||
void run();
|
void run();
|
||||||
//@}
|
//@}
|
||||||
|
@ -38,11 +38,11 @@ class Paragraph;
|
|||||||
|
|
||||||
class CursorSlice {
|
class CursorSlice {
|
||||||
public:
|
public:
|
||||||
/// Those needs inset_ access.
|
/// \name Those needs inset_ access.
|
||||||
///@{
|
//@{
|
||||||
friend class DocIterator;
|
friend class DocIterator;
|
||||||
friend class StableDocIterator;
|
friend class StableDocIterator;
|
||||||
///@}
|
//@}
|
||||||
|
|
||||||
/// type for cell number in inset
|
/// type for cell number in inset
|
||||||
typedef size_t idx_type;
|
typedef size_t idx_type;
|
||||||
@ -56,7 +56,7 @@ public:
|
|||||||
///
|
///
|
||||||
explicit CursorSlice(Inset &);
|
explicit CursorSlice(Inset &);
|
||||||
|
|
||||||
/// comparison operators.
|
/// \name Comparison operators.
|
||||||
//@{
|
//@{
|
||||||
friend bool operator==(CursorSlice const &, CursorSlice const &);
|
friend bool operator==(CursorSlice const &, CursorSlice const &);
|
||||||
friend bool operator!=(CursorSlice const &, CursorSlice const &);
|
friend bool operator!=(CursorSlice const &, CursorSlice const &);
|
||||||
|
@ -56,8 +56,8 @@ public:
|
|||||||
/// Increases font size by one
|
/// Increases font size by one
|
||||||
FontInfo & incSize();
|
FontInfo & incSize();
|
||||||
|
|
||||||
/// Accessor methods.
|
/// \name Accessor methods
|
||||||
///@{
|
//@{
|
||||||
FontFamily family() const { return family_; }
|
FontFamily family() const { return family_; }
|
||||||
void setFamily(FontFamily f) { family_ = f; }
|
void setFamily(FontFamily f) { family_ = f; }
|
||||||
FontSeries series() const { return series_; }
|
FontSeries series() const { return series_; }
|
||||||
@ -84,7 +84,7 @@ public:
|
|||||||
void setColor(ColorCode c) { color_ = c; }
|
void setColor(ColorCode c) { color_ = c; }
|
||||||
ColorCode background() const { return background_; }
|
ColorCode background() const { return background_; }
|
||||||
void setBackground(ColorCode b) { background_ = b; }
|
void setBackground(ColorCode b) { background_ = b; }
|
||||||
///@}
|
//@}
|
||||||
|
|
||||||
///
|
///
|
||||||
void update(FontInfo const & newfont, bool toggleall);
|
void update(FontInfo const & newfont, bool toggleall);
|
||||||
|
@ -23,7 +23,7 @@ public:
|
|||||||
HunspellChecker();
|
HunspellChecker();
|
||||||
~HunspellChecker();
|
~HunspellChecker();
|
||||||
|
|
||||||
/// SpellChecker inherited methods.
|
/// \name SpellChecker inherited methods.
|
||||||
///@{
|
///@{
|
||||||
enum Result check(WordLangTuple const &);
|
enum Result check(WordLangTuple const &);
|
||||||
void suggest(WordLangTuple const &, docstring_list &);
|
void suggest(WordLangTuple const &, docstring_list &);
|
||||||
|
@ -47,8 +47,8 @@ public:
|
|||||||
///
|
///
|
||||||
virtual ~LyXView() {}
|
virtual ~LyXView() {}
|
||||||
|
|
||||||
//@{ generic accessor functions
|
/// \name Generic accessor functions
|
||||||
|
//@{
|
||||||
/// \return the currently selected buffer view.
|
/// \return the currently selected buffer view.
|
||||||
virtual BufferView * currentBufferView() = 0;
|
virtual BufferView * currentBufferView() = 0;
|
||||||
virtual BufferView const * currentBufferView() const = 0;
|
virtual BufferView const * currentBufferView() const = 0;
|
||||||
|
@ -45,9 +45,7 @@ public:
|
|||||||
~ButtonController();
|
~ButtonController();
|
||||||
|
|
||||||
//@{
|
//@{
|
||||||
/** Methods to set and get the ButtonPolicy.
|
/// Methods to set and get the ButtonPolicy.
|
||||||
* \param ptr is owned by the ButtonController.
|
|
||||||
*/
|
|
||||||
void setPolicy(ButtonPolicy::Policy policy);
|
void setPolicy(ButtonPolicy::Policy policy);
|
||||||
ButtonPolicy const & policy() const;
|
ButtonPolicy const & policy() const;
|
||||||
ButtonPolicy & policy();
|
ButtonPolicy & policy();
|
||||||
@ -83,8 +81,9 @@ public:
|
|||||||
*/
|
*/
|
||||||
bool setReadOnly(bool);
|
bool setReadOnly(bool);
|
||||||
|
|
||||||
/** \param validity Tell the BC that the data is, or is not, valid.
|
/**
|
||||||
* Sets the activation state of the buttons immediately.
|
* Sets the activation state of the buttons immediately.
|
||||||
|
* \param validity Tell the BC that the data is, or is not, valid.
|
||||||
*/
|
*/
|
||||||
void setValid(bool);
|
void setValid(bool);
|
||||||
|
|
||||||
@ -93,8 +92,7 @@ public:
|
|||||||
//
|
//
|
||||||
|
|
||||||
//@{
|
//@{
|
||||||
/** Store pointers to these widgets.
|
/// Store pointers to these widgets.
|
||||||
*/
|
|
||||||
void setOK(QPushButton * obj);
|
void setOK(QPushButton * obj);
|
||||||
void setApply(QPushButton * obj);
|
void setApply(QPushButton * obj);
|
||||||
void setCancel(QPushButton * obj);
|
void setCancel(QPushButton * obj);
|
||||||
|
@ -36,7 +36,7 @@ public:
|
|||||||
virtual QWidget const * asQWidget() const { return this; }
|
virtual QWidget const * asQWidget() const { return this; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/// Dialog inherited methods
|
/// \name Dialog inherited methods
|
||||||
//@{
|
//@{
|
||||||
void applyView() {}
|
void applyView() {}
|
||||||
bool initialiseParams(std::string const & /*data*/) { return true; }
|
bool initialiseParams(std::string const & /*data*/) { return true; }
|
||||||
|
@ -56,7 +56,7 @@ public:
|
|||||||
/// Clear all session information.
|
/// Clear all session information.
|
||||||
void clearSession();
|
void clearSession();
|
||||||
|
|
||||||
/// Method inherited from \c Application class
|
/// \name Methods inherited from Application class
|
||||||
//@{
|
//@{
|
||||||
LyXView * currentWindow();
|
LyXView * currentWindow();
|
||||||
bool getStatus(FuncRequest const & cmd, FuncStatus & flag) const;
|
bool getStatus(FuncRequest const & cmd, FuncStatus & flag) const;
|
||||||
@ -85,7 +85,8 @@ public:
|
|||||||
Toolbars & toolbars();
|
Toolbars & toolbars();
|
||||||
Menus const & menus() const;
|
Menus const & menus() const;
|
||||||
Menus & menus();
|
Menus & menus();
|
||||||
/// Methods inherited from \c QApplication class
|
|
||||||
|
/// \name Methods inherited from QApplication class
|
||||||
//@{
|
//@{
|
||||||
bool notify(QObject * receiver, QEvent * event);
|
bool notify(QObject * receiver, QEvent * event);
|
||||||
void commitData(QSessionManager & sm);
|
void commitData(QSessionManager & sm);
|
||||||
|
@ -66,7 +66,7 @@ protected Q_SLOTS:
|
|||||||
void change_adaptor();
|
void change_adaptor();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/// Dialog inherited methods
|
/// \name Dialog inherited methods
|
||||||
//@{
|
//@{
|
||||||
void applyView();
|
void applyView();
|
||||||
void updateContents();
|
void updateContents();
|
||||||
|
@ -26,7 +26,7 @@ class GuiInfo : public DialogView, public Ui::InfoUi
|
|||||||
public:
|
public:
|
||||||
GuiInfo(GuiView & lv);
|
GuiInfo(GuiView & lv);
|
||||||
|
|
||||||
/// Dialog inherited methods
|
/// \name Dialog inherited methods
|
||||||
//@{
|
//@{
|
||||||
void applyView();
|
void applyView();
|
||||||
void updateView();
|
void updateView();
|
||||||
|
@ -62,8 +62,8 @@ public:
|
|||||||
|
|
||||||
~GuiView();
|
~GuiView();
|
||||||
|
|
||||||
/// LyXView inherited methods.
|
/// \name LyXView inherited methods.
|
||||||
///@{
|
//@{
|
||||||
int id() const { return id_; }
|
int id() const { return id_; }
|
||||||
void setBusy(bool);
|
void setBusy(bool);
|
||||||
BufferView * currentBufferView();
|
BufferView * currentBufferView();
|
||||||
@ -83,7 +83,7 @@ public:
|
|||||||
void restartCursor();
|
void restartCursor();
|
||||||
void updateCompletion(Cursor & cur, bool start, bool keep);
|
void updateCompletion(Cursor & cur, bool start, bool keep);
|
||||||
void setFocus();
|
void setFocus();
|
||||||
///@}
|
//@}
|
||||||
|
|
||||||
///
|
///
|
||||||
void focusInEvent(QFocusEvent * e);
|
void focusInEvent(QFocusEvent * e);
|
||||||
@ -119,13 +119,13 @@ public:
|
|||||||
///
|
///
|
||||||
void importDocument(std::string const &);
|
void importDocument(std::string const &);
|
||||||
|
|
||||||
/// GuiBufferDelegate.
|
/// \name GuiBufferDelegate.
|
||||||
///@{
|
//@{
|
||||||
void resetAutosaveTimers();
|
void resetAutosaveTimers();
|
||||||
void errors(std::string const &, bool from_master = false);
|
void errors(std::string const &, bool from_master = false);
|
||||||
void structureChanged();
|
void structureChanged();
|
||||||
void updateTocItem(std::string const &, DocIterator const &);
|
void updateTocItem(std::string const &, DocIterator const &);
|
||||||
///@}
|
//@}
|
||||||
|
|
||||||
///
|
///
|
||||||
TocModels & tocModels();
|
TocModels & tocModels();
|
||||||
|
@ -80,9 +80,9 @@ public:
|
|||||||
/// get notification when the cursor leaves this inset
|
/// get notification when the cursor leaves this inset
|
||||||
bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
|
bool notifyCursorLeaves(Cursor const & old, Cursor & cur);
|
||||||
|
|
||||||
/// direct access to the cell.
|
|
||||||
/// inlined because shows in profile.
|
|
||||||
//@{
|
//@{
|
||||||
|
/// direct access to the cell.
|
||||||
|
/// Inlined because of performance reasons.
|
||||||
MathData & cell(idx_type i) { return cells_[i]; }
|
MathData & cell(idx_type i) { return cells_[i]; }
|
||||||
MathData const & cell(idx_type i) const { return cells_[i]; }
|
MathData const & cell(idx_type i) const { return cells_[i]; }
|
||||||
//@}
|
//@}
|
||||||
|
@ -112,11 +112,11 @@ public:
|
|||||||
*/
|
*/
|
||||||
FileName const & system_temp_dir() const { return system_temp_dir_; }
|
FileName const & system_temp_dir() const { return system_temp_dir_; }
|
||||||
|
|
||||||
/** The path to the temporary directory used by LyX.
|
//@{
|
||||||
|
/** The path to the temporary directory used by %LyX.
|
||||||
* (Eg /tmp/lyx_tmpdir800nBI1z9 on *nix.)
|
* (Eg /tmp/lyx_tmpdir800nBI1z9 on *nix.)
|
||||||
* Can be reset by LyXRC.
|
* Can be reset by LyXRC.
|
||||||
*/
|
*/
|
||||||
//@{
|
|
||||||
FileName const & temp_dir() const { return temp_dir_; }
|
FileName const & temp_dir() const { return temp_dir_; }
|
||||||
void set_temp_dir(FileName const & temp_dir) const;
|
void set_temp_dir(FileName const & temp_dir) const;
|
||||||
//@}
|
//@}
|
||||||
|
Loading…
Reference in New Issue
Block a user