Skip to content
Snippets Groups Projects
Commit 4eb3718f authored by Jérémy Quentin's avatar Jérémy Quentin
Browse files

[#1886]

parent 58c885ca
Branches
Tags
No related merge requests found
......@@ -37,10 +37,6 @@
#include "configurationmanager_interface_singleton.h"
/**
*
* @param parent
*/
SFLPhone::SFLPhone(QWidget *parent)
: KXmlGuiWindow(parent),
view(new sflphone_kdeView(this))
......
......@@ -41,7 +41,20 @@
class sflphone_kdeView;
/**
* This class represents the SFLphone main window
* It implements the methods relative to windowing
* (status, menus, toolbars, notifications...).
* It uses a view which implements the real functionning
* and features of the phone.
* The display of the window is according to the state of the view,
* so the view sends some signals to ask for changes on the window
* that the window has to take into account.
*
* @short Main window
* @author Jérémy Quentin <jeremy.quentin@savoirfairelinux.com>
* @version 0.9.6
**/
class SFLPhone : public KXmlGuiWindow
{
Q_OBJECT
......
......@@ -48,10 +48,13 @@ class ConfigurationDialogKDE;
* This is the main view class for sflphone-client-kde. Most of the non-menu,
* non-toolbar, and non-statusbar (e.g., non frame) GUI code should go
* here.
* As the state of the view has effects on the window,
* it emits some signals to ask for changes that the window has
* to treat.
*
* @short Main view
* @author Jérémy Quentin <jeremy.quentin@savoirfairelinux.com>
* @version 0.1
* @version 0.9.6
*/
class sflphone_kdeView : public QWidget, public Ui::SFLPhone_view
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment