summaryrefslogtreecommitdiff
path: root/capplet/gsm-app-dialog.h
diff options
context:
space:
mode:
authorWu Xiaotian <[email protected]>2018-12-14 18:01:46 +0800
committerlukefromdc <[email protected]>2018-12-21 22:47:02 +0000
commit0e2eb8a311586599bbd3937d413da2f78eedb4d6 (patch)
treec29979d0f3ff1749769bf9668133683fc270725e /capplet/gsm-app-dialog.h
parent34ef232530e30a2ebc32d41bae8a112323adbcc2 (diff)
downloadmate-session-manager-0e2eb8a311586599bbd3937d413da2f78eedb4d6.tar.bz2
mate-session-manager-0e2eb8a311586599bbd3937d413da2f78eedb4d6.tar.xz
Add a delay setting to Startup Manager
Fixed issue #127 - capplet/gsm-app-dialog.c - capplet/gsm-app-dialog.h - capplet/gsm-properties-dialog.c - capplet/gsp-app.c - capplet/gsp-app.h - capplet/gsp-keyfile.h - data/session-properties.ui
Diffstat (limited to 'capplet/gsm-app-dialog.h')
-rw-r--r--capplet/gsm-app-dialog.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/capplet/gsm-app-dialog.h b/capplet/gsm-app-dialog.h
index 5869242..bef0535 100644
--- a/capplet/gsm-app-dialog.h
+++ b/capplet/gsm-app-dialog.h
@@ -31,16 +31,19 @@ G_DECLARE_FINAL_TYPE (GsmAppDialog, gsm_app_dialog, GSM, APP_DIALOG, GtkDialog)
GtkWidget * gsm_app_dialog_new (const char *name,
const char *command,
- const char *comment);
+ const char *comment,
+ guint delay);
gboolean gsm_app_dialog_run (GsmAppDialog *dialog,
char **name_p,
char **command_p,
- char **comment_p);
+ char **comment_p,
+ guint *delay);
const char * gsm_app_dialog_get_name (GsmAppDialog *dialog);
const char * gsm_app_dialog_get_command (GsmAppDialog *dialog);
const char * gsm_app_dialog_get_comment (GsmAppDialog *dialog);
+guint gsm_app_dialog_get_delay (GsmAppDialog *dialog);
G_END_DECLS