]> git.lyx.org Git - features.git/commitdiff
Put back doxygen comments deleted from lyx_gui.h.
authorAbdelrazak Younes <younes@lyx.org>
Tue, 3 Oct 2006 13:59:01 +0000 (13:59 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Tue, 3 Oct 2006 13:59:01 +0000 (13:59 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15212 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/Application.h

index a141bf54d45e6d99e2949ae5b5c2da5fe7fb86e0..0959020230e5611236345ef550f9a8ce8b62238c 100644 (file)
@@ -46,12 +46,19 @@ public:
        ///
        virtual ~Application() {}
 
+       /// Start the main event loop, after executing the given batch
+       /// commands.
        int start(std::string const & batch);
        ///
        virtual Gui & gui() = 0;
        ///
        virtual int const exec() = 0;
-       ///
+
+       /// Quit running LyX.
+       /**
+       * This may either quit directly or record the exit status
+       * and only stop the event loop.
+       */
        virtual void exit(int status) = 0;
 
        ///
@@ -81,7 +88,7 @@ public:
        BufferList & bufferList();
        BufferList const & bufferList() const;
 
-       ///
+       /// Create the main window with given geometry settings.
        LyXView & createView(unsigned int width, unsigned int height,
                int posx, int posy, bool maximize);