Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
c7fb5a16
Commit
c7fb5a16
authored
19 years ago
by
yanmorin
Browse files
Options
Downloads
Patches
Plain Diff
Nécessair pour compiler server
parent
70d8288f
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/gui/Makefile.am
+2
-2
2 additions, 2 deletions
src/gui/Makefile.am
src/gui/guiframework.h
+9
-10
9 additions, 10 deletions
src/gui/guiframework.h
with
11 additions
and
12 deletions
src/gui/Makefile.am
+
2
−
2
View file @
c7fb5a16
SUBDIRS
=
qt
SUBDIRS
=
qt
server
noinst_LTLIBRARIES
=
libguiframework.la
...
...
@@ -7,4 +7,4 @@ libguiframework_la_SOURCES = \
libguiframework_la_CPPFLAGS
=
-I
$(
top_srcdir
)
libguiframework_la_CXXFLAGS
=
$(
libccext2_CFLAGS
)
libguiframework_la_LIBADD
=
qt/libsflphoneqt.la
\ No newline at end of file
libguiframework_la_LIBADD
=
qt/libsflphoneqt.la server/libsflphoneguiserver.la
This diff is collapsed.
Click to expand it.
src/gui/guiframework.h
+
9
−
10
View file @
c7fb5a16
...
...
@@ -24,7 +24,6 @@
/* The GuiFramework class is the base of all user interface */
#include
<string>
using
namespace
std
;
class
GuiFramework
{
public:
...
...
@@ -36,12 +35,12 @@ public:
virtual
void
peerAnsweredCall
(
short
id
)
=
0
;
virtual
int
peerRingingCall
(
short
id
)
=
0
;
virtual
int
peerHungupCall
(
short
id
)
=
0
;
virtual
void
displayTextMessage
(
short
id
,
const
string
&
message
)
=
0
;
virtual
void
displayErrorText
(
short
id
,
const
string
&
message
)
=
0
;
virtual
void
displayError
(
const
string
&
error
)
=
0
;
virtual
void
displayStatus
(
const
string
&
status
)
=
0
;
virtual
void
displayTextMessage
(
short
id
,
const
std
::
string
&
message
)
=
0
;
virtual
void
displayErrorText
(
short
id
,
const
std
::
string
&
message
)
=
0
;
virtual
void
displayError
(
const
std
::
string
&
error
)
=
0
;
virtual
void
displayStatus
(
const
std
::
string
&
status
)
=
0
;
virtual
void
displayContext
(
short
id
)
=
0
;
virtual
string
getRingtoneFile
(
void
)
=
0
;
virtual
std
::
string
getRingtoneFile
(
void
)
=
0
;
virtual
void
setup
(
void
)
=
0
;
virtual
int
selectedCall
(
void
)
=
0
;
virtual
bool
isCurrentId
(
short
)
=
0
;
...
...
@@ -49,13 +48,13 @@ public:
virtual
void
stopVoiceMessageNotification
(
void
)
=
0
;
/* Child class to parent class */
int
outgoingCall
(
const
string
&
to
);
int
outgoingCall
(
const
std
::
string
&
to
);
int
hangupCall
(
short
id
);
int
cancelCall
(
short
id
);
int
answerCall
(
short
id
);
int
onHoldCall
(
short
id
);
int
offHoldCall
(
short
id
);
int
transferCall
(
short
id
,
const
string
&
to
);
int
transferCall
(
short
id
,
const
std
::
string
&
to
);
void
muteOn
(
short
id
);
void
muteOff
(
short
id
);
int
refuseCall
(
short
id
);
...
...
@@ -64,12 +63,12 @@ public:
int
registerVoIPLink
(
void
);
int
unregisterVoIPLink
(
void
);
int
quitApplication
(
void
);
int
sendTextMessage
(
short
id
,
const
string
&
message
);
int
sendTextMessage
(
short
id
,
const
std
::
string
&
message
);
int
accessToDirectory
(
void
);
void
sendDtmf
(
short
id
,
char
code
);
protected:
string
_message
;
std
::
string
_message
;
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment