Skip to content

Commit

Permalink
2.0 Release Candidate II
Browse files Browse the repository at this point in the history
  • Loading branch information
Harinlen committed Jun 5, 2015
1 parent f981372 commit f1fa57a
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
27 changes: 27 additions & 0 deletions gridwidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,34 @@ class GridWidget : public QWidget
*/
QWidget *widget() const;

/*!
* \brief The grid size parameter.
* \return The grid size.
*/
static int gridSize();

/*!
* \brief Change the grid size.
* \param gridSize The new grid size.
*/
static void setGridSize(int gridSize);

/*!
* \brief Get the grid step parameter.
* \return The grid step.
*/
static int gridStep();

/*!
* \brief Change the grid step size.
* \param gridStep The grid step.
*/
static void setGridStep(int gridStep);

/*!
* \brief Show or hide coordinate effect.
* \return The status of display the coordinate effect.
*/
bool coordinate() const;

signals:
Expand All @@ -58,6 +80,11 @@ public slots:
* \param widget The prefer central widget.
*/
void setWidget(QWidget *widget);

/*!
* \brief Set to display or hide the coordinate effect.
* \param coordinate To enabled coordinate effect, true.
*/
void setCoordinate(bool coordinate);

protected:
Expand Down
7 changes: 7 additions & 0 deletions mainpage.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,18 @@

/** @mainpage
*<br/>
*<h1>Summary</h1>
*<span style="font-size: 14pt">
* Robot Emulator provides a cross-platform, complete integrated operate
* environment for guardian robots simulation. <br />
* It is available for Linux, OS X and Windows operating systems.
*</span>
*<h1>Minimum System Requirements</h1>
*<span style="font-size: 14pt">
* CPU: Intel(R) Pentium(TM) 4 with HT technology. <br />
* Memory: 1GB DDRIII 1333 <br />
* Graphics card: Intel(R) Graphics 4000.
*</span>
*<br/>
*/

Expand Down

0 comments on commit f1fa57a

Please sign in to comment.