Compare commits
23 Commits
Author | SHA1 | Date | |
---|---|---|---|
ae29739b71
|
|||
0e10daac36
|
|||
08d78594df
|
|||
47275dae80
|
|||
378fcc091f
|
|||
![]() |
7b876a1b68 | ||
![]() |
d7e9dcf985 | ||
![]() |
c57253ae7f | ||
![]() |
a53e865f20 | ||
![]() |
0d081153c6 | ||
![]() |
5f13a97e2e | ||
![]() |
a40c2128fa | ||
![]() |
4e3c31d09e | ||
![]() |
8aa570a00d | ||
![]() |
a0cd05aa7c | ||
![]() |
ecaf20eece | ||
![]() |
df8136b62e | ||
![]() |
09cebb7863 | ||
![]() |
a62121368f | ||
![]() |
8b255bb012 | ||
![]() |
0743fbc88f | ||
![]() |
57d3aac667 | ||
![]() |
9b5b74c2b2 |
2
.bzrignore → .gitignore
vendored
2
.bzrignore → .gitignore
vendored
@@ -2,3 +2,5 @@ Makefile
|
|||||||
Makefile.in
|
Makefile.in
|
||||||
*.gmo
|
*.gmo
|
||||||
alarm-clock*tar.gz*
|
alarm-clock*tar.gz*
|
||||||
|
*.[oa]
|
||||||
|
*~
|
14
NEWS
14
NEWS
@@ -1,3 +1,17 @@
|
|||||||
|
Overview of changes in Alarm Clock 1.0.0 "The working one"
|
||||||
|
===============================================================
|
||||||
|
|
||||||
|
A fork of the unmaintained project has been moved for Artix Linux in
|
||||||
|
our Gitea Server for further maintenance and/or development.
|
||||||
|
|
||||||
|
Overview of changes in Alarm Clock 0.3.4 "Hipp, hipp"
|
||||||
|
===============================================================
|
||||||
|
|
||||||
|
Bugs fixed:
|
||||||
|
1122500 - Don't cancel the next alarm if alarm triggers a day late
|
||||||
|
1137453 - Port to GStreamer 1.0
|
||||||
|
|
||||||
|
|
||||||
Overview of changes in Alarm Clock 0.3.3 "Squish"
|
Overview of changes in Alarm Clock 0.3.3 "Squish"
|
||||||
===============================================================
|
===============================================================
|
||||||
|
|
||||||
|
22
README
22
README
@@ -1,7 +1,7 @@
|
|||||||
Alarm Clock
|
Alarm Clock
|
||||||
=================
|
=================
|
||||||
|
|
||||||
This package contains a program for use with the GNOME panel or equivalent.
|
This package contains a program for use with the GTK panel.
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
------------
|
------------
|
||||||
@@ -13,11 +13,11 @@ You need at least:
|
|||||||
gconf-2.0
|
gconf-2.0
|
||||||
gio-2.0
|
gio-2.0
|
||||||
gnome-icon-theme
|
gnome-icon-theme
|
||||||
gstreamer-0.10.2
|
gstreamer-1.0
|
||||||
libnotify-0.4.1
|
libnotify-0.4.1
|
||||||
libxml-2.0
|
libxml-2.0
|
||||||
unique-1.0
|
unique-1.0
|
||||||
|
gnome-common
|
||||||
|
|
||||||
Optional dependencies:
|
Optional dependencies:
|
||||||
|
|
||||||
@@ -40,3 +40,19 @@ Compile with the usual:
|
|||||||
./configure
|
./configure
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
|
|
||||||
|
Usage
|
||||||
|
-----
|
||||||
|
|
||||||
|
# start applet
|
||||||
|
alarm-clock-applet
|
||||||
|
|
||||||
|
# start applet with main window hidden
|
||||||
|
alarm-clock-applet --hidden
|
||||||
|
|
||||||
|
# stop all alarms
|
||||||
|
alarm-clock-applet --stop-all
|
||||||
|
|
||||||
|
# snooze all alarms
|
||||||
|
alarm-clock-applet --snooze-all
|
||||||
|
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
m4_define([alarm_clock_major_version], [0])
|
m4_define([alarm_clock_major_version], [0])
|
||||||
m4_define([alarm_clock_minor_version], [3])
|
m4_define([alarm_clock_minor_version], [3])
|
||||||
m4_define([alarm_clock_micro_version], [3])
|
m4_define([alarm_clock_micro_version], [4])
|
||||||
|
|
||||||
m4_define([alarm_clock_version],
|
m4_define([alarm_clock_version],
|
||||||
[alarm_clock_major_version.alarm_clock_minor_version.alarm_clock_micro_version])
|
[alarm_clock_major_version.alarm_clock_minor_version.alarm_clock_micro_version])
|
||||||
@@ -53,7 +53,7 @@ GTK_REQUIRED=2.12.0
|
|||||||
|
|
||||||
PKG_CHECK_MODULES(BASE, [glib-2.0 >= $GLIB_REQUIRED gmodule-2.0])
|
PKG_CHECK_MODULES(BASE, [glib-2.0 >= $GLIB_REQUIRED gmodule-2.0])
|
||||||
PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= $GTK_REQUIRED])
|
PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= $GTK_REQUIRED])
|
||||||
PKG_CHECK_MODULES(GSTREAMER, [gstreamer-0.10])
|
PKG_CHECK_MODULES(GSTREAMER, [gstreamer-1.0])
|
||||||
PKG_CHECK_MODULES(GNOME,
|
PKG_CHECK_MODULES(GNOME,
|
||||||
[gconf-2.0
|
[gconf-2.0
|
||||||
gio-2.0
|
gio-2.0
|
||||||
|
2390
data/alarm-clock.ui
2390
data/alarm-clock.ui
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2012-06-03 19:01+0200\n"
|
"POT-Creation-Date: 2017-03-24 00:55+0100\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@@ -17,7 +17,7 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ../data/alarm-clock-applet.desktop.in.h:1 ../data/alarm-clock.ui.h:5
|
#: ../data/alarm-clock-applet.desktop.in.h:1 ../data/alarm-clock.ui.h:35
|
||||||
#: ../src/ui.c:300
|
#: ../src/ui.c:300
|
||||||
msgid "Alarm Clock"
|
msgid "Alarm Clock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -26,7 +26,7 @@ msgstr ""
|
|||||||
msgid "Wake up in the morning"
|
msgid "Wake up in the morning"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.schemas.in.h:1 ../data/alarm-clock.ui.h:67
|
#: ../data/alarm-clock.schemas.in.h:1 ../data/alarm-clock.ui.h:14
|
||||||
msgid "Show countdown label"
|
msgid "Show countdown label"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -132,263 +132,279 @@ msgid "The command to run for the \"command\" notification type."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:1
|
#: ../data/alarm-clock.ui.h:1
|
||||||
msgid "Alarm Clock Preferences"
|
msgid "Delete alarm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:2
|
#: ../data/alarm-clock.ui.h:2
|
||||||
msgid "General"
|
msgid "Delete"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:3
|
#: ../data/alarm-clock.ui.h:3
|
||||||
msgid "Appearance"
|
msgid "Delete the selected alarm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:4
|
#: ../data/alarm-clock.ui.h:4
|
||||||
msgid "Edit alarm"
|
msgid "Edit alarm"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:6
|
#: ../data/alarm-clock.ui.h:5
|
||||||
msgid "Timer"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:7
|
|
||||||
msgid "Wake up sleepy head!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:8
|
|
||||||
msgid "_Time:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:9
|
|
||||||
msgid "_Name:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:10
|
|
||||||
msgid "Mon"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:11
|
|
||||||
msgid "Tue"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:12
|
|
||||||
msgid "Wed"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:13
|
|
||||||
msgid "Thu"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:14
|
|
||||||
msgid "Fri"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:15
|
|
||||||
msgid "Sat"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:16
|
|
||||||
msgid "Sun"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:17
|
|
||||||
msgid "_Repeat:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:18
|
|
||||||
msgid "Alert"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:19
|
|
||||||
msgid "Play _sound"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:20
|
|
||||||
msgid "Repea_t sound"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:21
|
|
||||||
msgid "Start _Application"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:22
|
|
||||||
msgid "Co_mmand:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:23
|
|
||||||
msgid "Snooze all beeping alarms"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:24
|
|
||||||
msgid "Stop all beeping alarms"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:25
|
|
||||||
msgid "Show _alarms"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:26
|
|
||||||
msgid "Manage your alarms"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:27
|
|
||||||
msgid "_Preferences"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:28
|
|
||||||
msgid "About Alarm Clock"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:29
|
|
||||||
msgid "Get up in the morning!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:30
|
|
||||||
msgid "Alarms"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:31
|
|
||||||
msgid "New..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:32
|
|
||||||
msgid "Edit..."
|
msgid "Edit..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:6
|
||||||
|
msgid "Edit the selected alarm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:7
|
||||||
|
msgid "Enable/disable alarm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:8
|
||||||
|
msgid "Enable/disable"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:9
|
||||||
|
msgid "Enable/disable the selected alarm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:10
|
||||||
|
msgid "New alarm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:11
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:12
|
||||||
|
msgid "_Quit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:13
|
||||||
|
msgid "Quit Alarm Clock"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:15
|
||||||
|
msgid "Snooze alarm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:16
|
||||||
|
msgid "Snooze"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:17
|
||||||
|
msgid "Snooze the selected alarm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:18
|
||||||
|
msgid "Snooze all alarms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:19
|
||||||
|
msgid "Snooze alarms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:20
|
||||||
|
msgid "Snooze all beeping alarms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:21
|
||||||
|
msgid "Stop alarm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:22
|
||||||
|
msgid "Stop"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:23
|
||||||
|
msgid "Stop the selected alarm"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:24
|
||||||
|
msgid "Stop all alarms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:25
|
||||||
|
msgid "Stop alarms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:26
|
||||||
|
msgid "Stop all beeping alarms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:27
|
||||||
|
msgid "Toggle alarms window"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:28
|
||||||
|
msgid "Toggle alarms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:29
|
||||||
|
msgid "Toggle the visibility of the alarms window"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:30
|
||||||
|
msgid "About Alarm Clock"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:31
|
||||||
|
msgid "Get up in the morning!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:32
|
||||||
|
msgid "Alarms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:33
|
#: ../data/alarm-clock.ui.h:33
|
||||||
msgid "Delete"
|
msgid "New..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:34
|
#: ../data/alarm-clock.ui.h:34
|
||||||
msgid "Enable"
|
msgid "Enable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:35
|
|
||||||
msgid "Stop"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:36
|
#: ../data/alarm-clock.ui.h:36
|
||||||
msgid "Snooze"
|
msgid "Timer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:37
|
#: ../data/alarm-clock.ui.h:37
|
||||||
msgid "1 minute"
|
msgid "Wake up sleepy head!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:38
|
#: ../data/alarm-clock.ui.h:38
|
||||||
msgid "3 minutes"
|
msgid "_Time:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:39
|
#: ../data/alarm-clock.ui.h:39
|
||||||
msgid "5 minutes"
|
msgid "_Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:40
|
#: ../data/alarm-clock.ui.h:40
|
||||||
msgid "10 minutes"
|
msgid "Mon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:41
|
#: ../data/alarm-clock.ui.h:41
|
||||||
msgid "Custom..."
|
msgid "Tue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:42
|
#: ../data/alarm-clock.ui.h:42
|
||||||
msgid "Snooze alarm"
|
msgid "Wed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:43
|
#: ../data/alarm-clock.ui.h:43
|
||||||
msgid "Snooze the selected alarm"
|
msgid "Thu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:44
|
#: ../data/alarm-clock.ui.h:44
|
||||||
msgid "Snooze for:"
|
msgid "Fri"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:45
|
#: ../data/alarm-clock.ui.h:45
|
||||||
msgid "minutes"
|
msgid "Sat"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:46
|
#: ../data/alarm-clock.ui.h:46
|
||||||
msgid "_Snooze"
|
msgid "Sun"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:47
|
#: ../data/alarm-clock.ui.h:47 ../src/alarm.c:2015
|
||||||
msgid "Stop alarm"
|
msgid "Every day"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:48
|
#: ../data/alarm-clock.ui.h:48 ../src/alarm.c:2009
|
||||||
msgid "Stop the selected alarm"
|
msgid "Weekdays"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:49
|
#: ../data/alarm-clock.ui.h:49 ../src/alarm.c:2012
|
||||||
msgid "Delete alarm"
|
msgid "Weekends"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:50
|
#: ../data/alarm-clock.ui.h:50 ../src/alarm.c:2006
|
||||||
msgid "Delete the selected alarm"
|
msgid "Once"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:51
|
#: ../data/alarm-clock.ui.h:51
|
||||||
msgid "Edit the selected alarm"
|
msgid "_Repeat:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:52
|
#: ../data/alarm-clock.ui.h:52
|
||||||
msgid "New alarm"
|
msgid "Alert"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:53
|
#: ../data/alarm-clock.ui.h:53
|
||||||
msgid "New"
|
msgid "Play _sound"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:54
|
#: ../data/alarm-clock.ui.h:54
|
||||||
msgid "Enable/disable alarm"
|
msgid "Repea_t sound"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:55
|
#: ../data/alarm-clock.ui.h:55
|
||||||
msgid "Enable/disable"
|
msgid "Start _Application"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:56
|
#: ../data/alarm-clock.ui.h:56
|
||||||
msgid "Enable/disable the selected alarm"
|
msgid "Co_mmand:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:57
|
#: ../data/alarm-clock.ui.h:57
|
||||||
msgid "Snooze all alarms"
|
msgid "Start automatically at login"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:58
|
#: ../data/alarm-clock.ui.h:58
|
||||||
msgid "Snooze alarms"
|
msgid "Alarm Clock Preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:59
|
#: ../data/alarm-clock.ui.h:59
|
||||||
msgid "Stop all alarms"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:60
|
#: ../data/alarm-clock.ui.h:60
|
||||||
msgid "Stop alarms"
|
msgid "Appearance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:61
|
#: ../data/alarm-clock.ui.h:61
|
||||||
msgid "Toggle alarms window"
|
msgid "_Snooze"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:62
|
#: ../data/alarm-clock.ui.h:62
|
||||||
msgid "Toggle alarms"
|
msgid "Snooze for:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:63
|
#: ../data/alarm-clock.ui.h:63
|
||||||
msgid "Toggle the visibility of the alarms window"
|
msgid "minutes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:64
|
#: ../data/alarm-clock.ui.h:64
|
||||||
msgid "_Quit"
|
msgid "1 minute"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:65
|
#: ../data/alarm-clock.ui.h:65
|
||||||
msgid "Quit Alarm Clock"
|
msgid "3 minutes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../data/alarm-clock.ui.h:66
|
#: ../data/alarm-clock.ui.h:66
|
||||||
msgid "Start automatically at login"
|
msgid "5 minutes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:67
|
||||||
|
msgid "10 minutes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:68
|
||||||
|
msgid "Custom..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:69
|
||||||
|
msgid "Show _alarms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:70
|
||||||
|
msgid "Manage your alarms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../data/alarm-clock.ui.h:71
|
||||||
|
msgid "_Preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../src/alarm-applet.c:592
|
#: ../src/alarm-applet.c:592
|
||||||
@@ -396,39 +412,23 @@ msgstr ""
|
|||||||
msgid "%s is already running, exiting...\n"
|
msgid "%s is already running, exiting...\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../src/alarm-settings.c:79
|
#: ../src/alarm-settings.c:94
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "_Repeat: %s"
|
msgid "_Repeat: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../src/alarm-settings.c:245 ../src/alarm-settings.c:425
|
#: ../src/alarm-settings.c:260 ../src/alarm-settings.c:440
|
||||||
msgid "Select sound file..."
|
msgid "Select sound file..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../src/alarm-settings.c:295
|
#: ../src/alarm-settings.c:310
|
||||||
msgid "Custom command..."
|
msgid "Custom command..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../src/alarm.c:1685
|
#: ../src/alarm-settings.c:839 ../src/alarm.c:1685
|
||||||
msgid "Could not create player! Please check your sound settings."
|
msgid "Could not create player! Please check your sound settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../src/alarm.c:2041
|
|
||||||
msgid "Once"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../src/alarm.c:2044
|
|
||||||
msgid "Weekdays"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../src/alarm.c:2047
|
|
||||||
msgid "Weekends"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../src/alarm.c:2050
|
|
||||||
msgid "Every day"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. About Alarm Clock
|
#. About Alarm Clock
|
||||||
#: ../src/ui.c:428
|
#: ../src/ui.c:428
|
||||||
#, c-format
|
#, c-format
|
||||||
|
1573
src/.deps/alarm-actions.Po
Normal file
1573
src/.deps/alarm-actions.Po
Normal file
File diff suppressed because it is too large
Load Diff
1572
src/.deps/alarm-applet.Po
Normal file
1572
src/.deps/alarm-applet.Po
Normal file
File diff suppressed because it is too large
Load Diff
1571
src/.deps/alarm-gconf.Po
Normal file
1571
src/.deps/alarm-gconf.Po
Normal file
File diff suppressed because it is too large
Load Diff
1570
src/.deps/alarm-list-window.Po
Normal file
1570
src/.deps/alarm-list-window.Po
Normal file
File diff suppressed because it is too large
Load Diff
1568
src/.deps/alarm-settings.Po
Normal file
1568
src/.deps/alarm-settings.Po
Normal file
File diff suppressed because it is too large
Load Diff
533
src/.deps/alarm.Po
Normal file
533
src/.deps/alarm.Po
Normal file
@@ -0,0 +1,533 @@
|
|||||||
|
alarm.o: alarm.c /usr/include/stdc-predef.h /usr/include/stdio.h \
|
||||||
|
/usr/include/bits/libc-header-start.h /usr/include/features.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stdarg.h \
|
||||||
|
/usr/include/bits/types.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \
|
||||||
|
/usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \
|
||||||
|
/usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \
|
||||||
|
/usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h \
|
||||||
|
/usr/include/bits/stdio.h /usr/include/time.h /usr/include/bits/time.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/string.h /usr/include/strings.h alarm.h \
|
||||||
|
/usr/include/glib-2.0/glib.h /usr/include/glib-2.0/glib/galloca.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtypes.h \
|
||||||
|
/usr/lib/glib-2.0/include/glibconfig.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmacros.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/limits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/syslimits.h \
|
||||||
|
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||||
|
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||||
|
/usr/include/bits/posix2_lim.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/float.h \
|
||||||
|
/usr/include/glib-2.0/glib/gversionmacros.h \
|
||||||
|
/usr/include/glib-2.0/glib/garray.h \
|
||||||
|
/usr/include/glib-2.0/glib/gasyncqueue.h \
|
||||||
|
/usr/include/glib-2.0/glib/gthread.h \
|
||||||
|
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
|
||||||
|
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
|
||||||
|
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \
|
||||||
|
/usr/include/bits/signum.h /usr/include/bits/signum-generic.h \
|
||||||
|
/usr/include/bits/types/sig_atomic_t.h \
|
||||||
|
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
|
||||||
|
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
|
||||||
|
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
|
||||||
|
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
|
||||||
|
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
|
||||||
|
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
|
||||||
|
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
|
||||||
|
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbase64.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbitlock.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbookmarkfile.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbytes.h \
|
||||||
|
/usr/include/glib-2.0/glib/gcharset.h \
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h \
|
||||||
|
/usr/include/glib-2.0/glib/gconvert.h \
|
||||||
|
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
|
||||||
|
/usr/include/glib-2.0/glib/gdatetime.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtimezone.h /usr/include/glib-2.0/glib/gdir.h \
|
||||||
|
/usr/include/dirent.h /usr/include/bits/dirent.h \
|
||||||
|
/usr/include/bits/dirent_ext.h /usr/include/glib-2.0/glib/genviron.h \
|
||||||
|
/usr/include/glib-2.0/glib/gfileutils.h \
|
||||||
|
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
|
||||||
|
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
|
||||||
|
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h \
|
||||||
|
/usr/include/glib-2.0/glib/ghook.h \
|
||||||
|
/usr/include/glib-2.0/glib/ghostutils.h \
|
||||||
|
/usr/include/glib-2.0/glib/giochannel.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
|
||||||
|
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
|
||||||
|
/usr/include/glib-2.0/glib/gunicode.h \
|
||||||
|
/usr/include/glib-2.0/glib/gkeyfile.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmappedfile.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmarkup.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmessages.h \
|
||||||
|
/usr/include/glib-2.0/glib/gvariant.h \
|
||||||
|
/usr/include/glib-2.0/glib/gvarianttype.h \
|
||||||
|
/usr/include/glib-2.0/glib/goption.h \
|
||||||
|
/usr/include/glib-2.0/glib/gpattern.h \
|
||||||
|
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
|
||||||
|
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
|
||||||
|
/usr/include/glib-2.0/glib/grcbox.h \
|
||||||
|
/usr/include/glib-2.0/glib/grefcount.h \
|
||||||
|
/usr/include/glib-2.0/glib/grefstring.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
|
||||||
|
/usr/include/glib-2.0/glib/gregex.h \
|
||||||
|
/usr/include/glib-2.0/glib/gscanner.h \
|
||||||
|
/usr/include/glib-2.0/glib/gsequence.h \
|
||||||
|
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
|
||||||
|
/usr/include/glib-2.0/glib/gspawn.h \
|
||||||
|
/usr/include/glib-2.0/glib/gstrfuncs.h \
|
||||||
|
/usr/include/glib-2.0/glib/gstringchunk.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtestutils.h \
|
||||||
|
/usr/include/glib-2.0/glib/gthreadpool.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtimer.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtrashstack.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtree.h \
|
||||||
|
/usr/include/glib-2.0/glib/gurifuncs.h \
|
||||||
|
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcache.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gmain.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/grel.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
|
||||||
|
/usr/include/sched.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/glib-2.0/glib/glib-autocleanups.h \
|
||||||
|
/usr/include/glib-2.0/glib-object.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gbinding.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gobject.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gtype.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gvalue.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gparam.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gclosure.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gsignal.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gmarshal.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gboxed.h \
|
||||||
|
/usr/include/glib-2.0/gobject/glib-types.h \
|
||||||
|
/usr/include/glib-2.0/gobject/genums.h \
|
||||||
|
/usr/include/glib-2.0/gobject/glib-enumtypes.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gparamspecs.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gsourceclosure.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gtypemodule.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gtypeplugin.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluearray.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluetypes.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gobject-autocleanups.h \
|
||||||
|
/usr/include/glib-2.0/glib/gi18n.h /usr/include/libintl.h \
|
||||||
|
/usr/include/locale.h /usr/include/bits/locale.h \
|
||||||
|
/usr/include/gconf/2/gconf/gconf-client.h \
|
||||||
|
/usr/include/gconf/2/gconf/gconf.h \
|
||||||
|
/usr/include/gconf/2/gconf/gconf-schema.h \
|
||||||
|
/usr/include/gconf/2/gconf/gconf-value.h \
|
||||||
|
/usr/include/gconf/2/gconf/gconf-error.h \
|
||||||
|
/usr/include/gconf/2/gconf/gconf-engine.h \
|
||||||
|
/usr/include/gconf/2/gconf/gconf-error.h \
|
||||||
|
/usr/include/gconf/2/gconf/gconf-enum-types.h \
|
||||||
|
/usr/include/gconf/2/gconf/gconf-listeners.h \
|
||||||
|
/usr/include/gconf/2/gconf/gconf-changeset.h player.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gst.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/glib-compat.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstenumtypes.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstconfig.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstversion.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstatomicqueue.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbin.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelement.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstobject.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontrolbinding.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontrolsource.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstclock.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpad.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbuffer.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstminiobject.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstallocator.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmemory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcaps.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststructure.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdatetime.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcapsfeatures.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmeta.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbufferlist.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpadtemplate.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstevent.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstformat.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstiterator.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttaglist.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsample.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsegment.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmessage.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstquery.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttoc.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontext.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdevice.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststreams.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststreamcollection.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttask.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttaskpool.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbus.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelementfactory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstplugin.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmacros.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpluginfeature.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsturi.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstminiobject.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbufferpool.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstchildproxy.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdebugutils.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdevicemonitor.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdeviceprovider.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdynamictypefactory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelementmetadata.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsterror.h /usr/include/errno.h \
|
||||||
|
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||||
|
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||||
|
/usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstghostpad.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstinfo.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstparamspecs.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstvalue.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpipeline.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpoll.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpreset.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstprotection.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstregistry.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpromise.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsystemclock.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttagsetter.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttocsetter.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracer.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracerfactory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracerrecord.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttypefind.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttypefindfactory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstutils.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstparse.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcompat.h
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
/usr/include/stdio.h:
|
||||||
|
/usr/include/bits/libc-header-start.h:
|
||||||
|
/usr/include/features.h:
|
||||||
|
/usr/include/sys/cdefs.h:
|
||||||
|
/usr/include/bits/wordsize.h:
|
||||||
|
/usr/include/bits/long-double.h:
|
||||||
|
/usr/include/gnu/stubs.h:
|
||||||
|
/usr/include/gnu/stubs-64.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stddef.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stdarg.h:
|
||||||
|
/usr/include/bits/types.h:
|
||||||
|
/usr/include/bits/timesize.h:
|
||||||
|
/usr/include/bits/typesizes.h:
|
||||||
|
/usr/include/bits/time64.h:
|
||||||
|
/usr/include/bits/types/__fpos_t.h:
|
||||||
|
/usr/include/bits/types/__mbstate_t.h:
|
||||||
|
/usr/include/bits/types/__fpos64_t.h:
|
||||||
|
/usr/include/bits/types/__FILE.h:
|
||||||
|
/usr/include/bits/types/FILE.h:
|
||||||
|
/usr/include/bits/types/struct_FILE.h:
|
||||||
|
/usr/include/bits/stdio_lim.h:
|
||||||
|
/usr/include/bits/sys_errlist.h:
|
||||||
|
/usr/include/bits/stdio.h:
|
||||||
|
/usr/include/time.h:
|
||||||
|
/usr/include/bits/time.h:
|
||||||
|
/usr/include/bits/types/clock_t.h:
|
||||||
|
/usr/include/bits/types/time_t.h:
|
||||||
|
/usr/include/bits/types/struct_tm.h:
|
||||||
|
/usr/include/bits/types/struct_timespec.h:
|
||||||
|
/usr/include/bits/endian.h:
|
||||||
|
/usr/include/bits/endianness.h:
|
||||||
|
/usr/include/bits/types/clockid_t.h:
|
||||||
|
/usr/include/bits/types/timer_t.h:
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h:
|
||||||
|
/usr/include/bits/types/locale_t.h:
|
||||||
|
/usr/include/bits/types/__locale_t.h:
|
||||||
|
/usr/include/string.h:
|
||||||
|
/usr/include/strings.h:
|
||||||
|
alarm.h:
|
||||||
|
/usr/include/glib-2.0/glib.h:
|
||||||
|
/usr/include/glib-2.0/glib/galloca.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtypes.h:
|
||||||
|
/usr/lib/glib-2.0/include/glibconfig.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmacros.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/limits.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/syslimits.h:
|
||||||
|
/usr/include/limits.h:
|
||||||
|
/usr/include/bits/posix1_lim.h:
|
||||||
|
/usr/include/bits/local_lim.h:
|
||||||
|
/usr/include/linux/limits.h:
|
||||||
|
/usr/include/bits/posix2_lim.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/float.h:
|
||||||
|
/usr/include/glib-2.0/glib/gversionmacros.h:
|
||||||
|
/usr/include/glib-2.0/glib/garray.h:
|
||||||
|
/usr/include/glib-2.0/glib/gasyncqueue.h:
|
||||||
|
/usr/include/glib-2.0/glib/gthread.h:
|
||||||
|
/usr/include/glib-2.0/glib/gatomic.h:
|
||||||
|
/usr/include/glib-2.0/glib/gerror.h:
|
||||||
|
/usr/include/glib-2.0/glib/gquark.h:
|
||||||
|
/usr/include/glib-2.0/glib/gutils.h:
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
/usr/include/bits/waitflags.h:
|
||||||
|
/usr/include/bits/waitstatus.h:
|
||||||
|
/usr/include/bits/floatn.h:
|
||||||
|
/usr/include/bits/floatn-common.h:
|
||||||
|
/usr/include/sys/types.h:
|
||||||
|
/usr/include/bits/stdint-intn.h:
|
||||||
|
/usr/include/endian.h:
|
||||||
|
/usr/include/bits/byteswap.h:
|
||||||
|
/usr/include/bits/uintn-identity.h:
|
||||||
|
/usr/include/sys/select.h:
|
||||||
|
/usr/include/bits/select.h:
|
||||||
|
/usr/include/bits/types/sigset_t.h:
|
||||||
|
/usr/include/bits/types/__sigset_t.h:
|
||||||
|
/usr/include/bits/types/struct_timeval.h:
|
||||||
|
/usr/include/bits/pthreadtypes.h:
|
||||||
|
/usr/include/bits/thread-shared-types.h:
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h:
|
||||||
|
/usr/include/bits/struct_mutex.h:
|
||||||
|
/usr/include/bits/struct_rwlock.h:
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
/usr/include/bits/stdlib-bsearch.h:
|
||||||
|
/usr/include/bits/stdlib-float.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbacktrace.h:
|
||||||
|
/usr/include/signal.h:
|
||||||
|
/usr/include/bits/signum.h:
|
||||||
|
/usr/include/bits/signum-generic.h:
|
||||||
|
/usr/include/bits/types/sig_atomic_t.h:
|
||||||
|
/usr/include/bits/types/siginfo_t.h:
|
||||||
|
/usr/include/bits/types/__sigval_t.h:
|
||||||
|
/usr/include/bits/siginfo-arch.h:
|
||||||
|
/usr/include/bits/siginfo-consts.h:
|
||||||
|
/usr/include/bits/types/sigval_t.h:
|
||||||
|
/usr/include/bits/types/sigevent_t.h:
|
||||||
|
/usr/include/bits/sigevent-consts.h:
|
||||||
|
/usr/include/bits/sigaction.h:
|
||||||
|
/usr/include/bits/sigcontext.h:
|
||||||
|
/usr/include/bits/types/stack_t.h:
|
||||||
|
/usr/include/sys/ucontext.h:
|
||||||
|
/usr/include/bits/sigstack.h:
|
||||||
|
/usr/include/bits/ss_flags.h:
|
||||||
|
/usr/include/bits/types/struct_sigstack.h:
|
||||||
|
/usr/include/bits/sigthread.h:
|
||||||
|
/usr/include/bits/signal_ext.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbase64.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbitlock.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbookmarkfile.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbytes.h:
|
||||||
|
/usr/include/glib-2.0/glib/gcharset.h:
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h:
|
||||||
|
/usr/include/glib-2.0/glib/gconvert.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdataset.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdate.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdatetime.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtimezone.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdir.h:
|
||||||
|
/usr/include/dirent.h:
|
||||||
|
/usr/include/bits/dirent.h:
|
||||||
|
/usr/include/bits/dirent_ext.h:
|
||||||
|
/usr/include/glib-2.0/glib/genviron.h:
|
||||||
|
/usr/include/glib-2.0/glib/gfileutils.h:
|
||||||
|
/usr/include/glib-2.0/glib/ggettext.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghash.h:
|
||||||
|
/usr/include/glib-2.0/glib/glist.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmem.h:
|
||||||
|
/usr/include/glib-2.0/glib/gnode.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghmac.h:
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghook.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghostutils.h:
|
||||||
|
/usr/include/glib-2.0/glib/giochannel.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmain.h:
|
||||||
|
/usr/include/glib-2.0/glib/gpoll.h:
|
||||||
|
/usr/include/glib-2.0/glib/gslist.h:
|
||||||
|
/usr/include/glib-2.0/glib/gstring.h:
|
||||||
|
/usr/include/glib-2.0/glib/gunicode.h:
|
||||||
|
/usr/include/glib-2.0/glib/gkeyfile.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmappedfile.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmarkup.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmessages.h:
|
||||||
|
/usr/include/glib-2.0/glib/gvariant.h:
|
||||||
|
/usr/include/glib-2.0/glib/gvarianttype.h:
|
||||||
|
/usr/include/glib-2.0/glib/goption.h:
|
||||||
|
/usr/include/glib-2.0/glib/gpattern.h:
|
||||||
|
/usr/include/glib-2.0/glib/gprimes.h:
|
||||||
|
/usr/include/glib-2.0/glib/gqsort.h:
|
||||||
|
/usr/include/glib-2.0/glib/gqueue.h:
|
||||||
|
/usr/include/glib-2.0/glib/grand.h:
|
||||||
|
/usr/include/glib-2.0/glib/grcbox.h:
|
||||||
|
/usr/include/glib-2.0/glib/grefcount.h:
|
||||||
|
/usr/include/glib-2.0/glib/grefstring.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmem.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmacros.h:
|
||||||
|
/usr/include/glib-2.0/glib/gregex.h:
|
||||||
|
/usr/include/glib-2.0/glib/gscanner.h:
|
||||||
|
/usr/include/glib-2.0/glib/gsequence.h:
|
||||||
|
/usr/include/glib-2.0/glib/gshell.h:
|
||||||
|
/usr/include/glib-2.0/glib/gslice.h:
|
||||||
|
/usr/include/glib-2.0/glib/gspawn.h:
|
||||||
|
/usr/include/glib-2.0/glib/gstrfuncs.h:
|
||||||
|
/usr/include/glib-2.0/glib/gstringchunk.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtestutils.h:
|
||||||
|
/usr/include/glib-2.0/glib/gthreadpool.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtimer.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtrashstack.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtree.h:
|
||||||
|
/usr/include/glib-2.0/glib/gurifuncs.h:
|
||||||
|
/usr/include/glib-2.0/glib/guuid.h:
|
||||||
|
/usr/include/glib-2.0/glib/gversion.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gallocator.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcache.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcompletion.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gmain.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/grel.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gthread.h:
|
||||||
|
/usr/include/pthread.h:
|
||||||
|
/usr/include/sched.h:
|
||||||
|
/usr/include/bits/sched.h:
|
||||||
|
/usr/include/bits/types/struct_sched_param.h:
|
||||||
|
/usr/include/bits/cpu-set.h:
|
||||||
|
/usr/include/bits/setjmp.h:
|
||||||
|
/usr/include/glib-2.0/glib/glib-autocleanups.h:
|
||||||
|
/usr/include/glib-2.0/glib-object.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gbinding.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gobject.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gtype.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gvalue.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gparam.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gclosure.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gsignal.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gmarshal.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gboxed.h:
|
||||||
|
/usr/include/glib-2.0/gobject/glib-types.h:
|
||||||
|
/usr/include/glib-2.0/gobject/genums.h:
|
||||||
|
/usr/include/glib-2.0/gobject/glib-enumtypes.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gparamspecs.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gsourceclosure.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gtypemodule.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gtypeplugin.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluearray.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluetypes.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gobject-autocleanups.h:
|
||||||
|
/usr/include/glib-2.0/glib/gi18n.h:
|
||||||
|
/usr/include/libintl.h:
|
||||||
|
/usr/include/locale.h:
|
||||||
|
/usr/include/bits/locale.h:
|
||||||
|
/usr/include/gconf/2/gconf/gconf-client.h:
|
||||||
|
/usr/include/gconf/2/gconf/gconf.h:
|
||||||
|
/usr/include/gconf/2/gconf/gconf-schema.h:
|
||||||
|
/usr/include/gconf/2/gconf/gconf-value.h:
|
||||||
|
/usr/include/gconf/2/gconf/gconf-error.h:
|
||||||
|
/usr/include/gconf/2/gconf/gconf-engine.h:
|
||||||
|
/usr/include/gconf/2/gconf/gconf-error.h:
|
||||||
|
/usr/include/gconf/2/gconf/gconf-enum-types.h:
|
||||||
|
/usr/include/gconf/2/gconf/gconf-listeners.h:
|
||||||
|
/usr/include/gconf/2/gconf/gconf-changeset.h:
|
||||||
|
player.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gst.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/glib-compat.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstenumtypes.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstconfig.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstversion.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstatomicqueue.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbin.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelement.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstobject.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontrolbinding.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontrolsource.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstclock.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpad.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbuffer.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstminiobject.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstallocator.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmemory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcaps.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststructure.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdatetime.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcapsfeatures.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmeta.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbufferlist.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpadtemplate.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstevent.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstformat.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstiterator.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttaglist.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsample.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsegment.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmessage.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstquery.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttoc.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontext.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdevice.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststreams.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststreamcollection.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttask.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttaskpool.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbus.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelementfactory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstplugin.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmacros.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpluginfeature.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsturi.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstminiobject.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbufferpool.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstchildproxy.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdebugutils.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdevicemonitor.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdeviceprovider.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdynamictypefactory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelementmetadata.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsterror.h:
|
||||||
|
/usr/include/errno.h:
|
||||||
|
/usr/include/bits/errno.h:
|
||||||
|
/usr/include/linux/errno.h:
|
||||||
|
/usr/include/asm/errno.h:
|
||||||
|
/usr/include/asm-generic/errno.h:
|
||||||
|
/usr/include/asm-generic/errno-base.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstghostpad.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstinfo.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstparamspecs.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstvalue.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpipeline.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpoll.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpreset.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstprotection.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstregistry.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpromise.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsystemclock.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttagsetter.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttocsetter.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracer.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracerfactory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracerrecord.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttypefind.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttypefindfactory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstutils.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstparse.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcompat.h:
|
1288
src/.deps/list-entry.Po
Normal file
1288
src/.deps/list-entry.Po
Normal file
File diff suppressed because it is too large
Load Diff
488
src/.deps/player.Po
Normal file
488
src/.deps/player.Po
Normal file
@@ -0,0 +1,488 @@
|
|||||||
|
player.o: player.c /usr/include/stdc-predef.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gst.h /usr/include/glib-2.0/glib.h \
|
||||||
|
/usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \
|
||||||
|
/usr/lib/glib-2.0/include/glibconfig.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmacros.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stddef.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/limits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/syslimits.h \
|
||||||
|
/usr/include/limits.h /usr/include/bits/libc-header-start.h \
|
||||||
|
/usr/include/features.h /usr/include/sys/cdefs.h \
|
||||||
|
/usr/include/bits/wordsize.h /usr/include/bits/long-double.h \
|
||||||
|
/usr/include/gnu/stubs.h /usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/include/bits/posix1_lim.h /usr/include/bits/local_lim.h \
|
||||||
|
/usr/include/linux/limits.h /usr/include/bits/posix2_lim.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/float.h \
|
||||||
|
/usr/include/glib-2.0/glib/gversionmacros.h /usr/include/time.h \
|
||||||
|
/usr/include/bits/time.h /usr/include/bits/types.h \
|
||||||
|
/usr/include/bits/timesize.h /usr/include/bits/typesizes.h \
|
||||||
|
/usr/include/bits/time64.h /usr/include/bits/types/clock_t.h \
|
||||||
|
/usr/include/bits/types/time_t.h /usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h \
|
||||||
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/glib-2.0/glib/garray.h \
|
||||||
|
/usr/include/glib-2.0/glib/gasyncqueue.h \
|
||||||
|
/usr/include/glib-2.0/glib/gthread.h \
|
||||||
|
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stdarg.h \
|
||||||
|
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
|
||||||
|
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \
|
||||||
|
/usr/include/bits/signum.h /usr/include/bits/signum-generic.h \
|
||||||
|
/usr/include/bits/types/sig_atomic_t.h \
|
||||||
|
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
|
||||||
|
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
|
||||||
|
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
|
||||||
|
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
|
||||||
|
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
|
||||||
|
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
|
||||||
|
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
|
||||||
|
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbase64.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbitlock.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbookmarkfile.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbytes.h \
|
||||||
|
/usr/include/glib-2.0/glib/gcharset.h \
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h \
|
||||||
|
/usr/include/glib-2.0/glib/gconvert.h \
|
||||||
|
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
|
||||||
|
/usr/include/glib-2.0/glib/gdatetime.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtimezone.h /usr/include/glib-2.0/glib/gdir.h \
|
||||||
|
/usr/include/dirent.h /usr/include/bits/dirent.h \
|
||||||
|
/usr/include/bits/dirent_ext.h /usr/include/glib-2.0/glib/genviron.h \
|
||||||
|
/usr/include/glib-2.0/glib/gfileutils.h \
|
||||||
|
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
|
||||||
|
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
|
||||||
|
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h \
|
||||||
|
/usr/include/glib-2.0/glib/ghook.h \
|
||||||
|
/usr/include/glib-2.0/glib/ghostutils.h \
|
||||||
|
/usr/include/glib-2.0/glib/giochannel.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
|
||||||
|
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
|
||||||
|
/usr/include/glib-2.0/glib/gunicode.h \
|
||||||
|
/usr/include/glib-2.0/glib/gkeyfile.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmappedfile.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmarkup.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmessages.h \
|
||||||
|
/usr/include/glib-2.0/glib/gvariant.h \
|
||||||
|
/usr/include/glib-2.0/glib/gvarianttype.h \
|
||||||
|
/usr/include/glib-2.0/glib/goption.h \
|
||||||
|
/usr/include/glib-2.0/glib/gpattern.h \
|
||||||
|
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
|
||||||
|
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
|
||||||
|
/usr/include/glib-2.0/glib/grcbox.h \
|
||||||
|
/usr/include/glib-2.0/glib/grefcount.h \
|
||||||
|
/usr/include/glib-2.0/glib/grefstring.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
|
||||||
|
/usr/include/glib-2.0/glib/gregex.h \
|
||||||
|
/usr/include/glib-2.0/glib/gscanner.h \
|
||||||
|
/usr/include/glib-2.0/glib/gsequence.h \
|
||||||
|
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
|
||||||
|
/usr/include/glib-2.0/glib/gspawn.h \
|
||||||
|
/usr/include/glib-2.0/glib/gstrfuncs.h \
|
||||||
|
/usr/include/glib-2.0/glib/gstringchunk.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtestutils.h /usr/include/string.h \
|
||||||
|
/usr/include/strings.h /usr/include/glib-2.0/glib/gthreadpool.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtimer.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtrashstack.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtree.h \
|
||||||
|
/usr/include/glib-2.0/glib/gurifuncs.h \
|
||||||
|
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcache.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gmain.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/grel.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
|
||||||
|
/usr/include/sched.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/glib-2.0/glib/glib-autocleanups.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/glib-compat.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstenumtypes.h \
|
||||||
|
/usr/include/glib-2.0/glib-object.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gbinding.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gobject.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gtype.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gvalue.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gparam.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gclosure.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gsignal.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gmarshal.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gboxed.h \
|
||||||
|
/usr/include/glib-2.0/gobject/glib-types.h \
|
||||||
|
/usr/include/glib-2.0/gobject/genums.h \
|
||||||
|
/usr/include/glib-2.0/gobject/glib-enumtypes.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gparamspecs.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gsourceclosure.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gtypemodule.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gtypeplugin.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluearray.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluetypes.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gobject-autocleanups.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstconfig.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstversion.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstatomicqueue.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbin.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelement.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstobject.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontrolbinding.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontrolsource.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstclock.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpad.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbuffer.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstminiobject.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstallocator.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmemory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcaps.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststructure.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdatetime.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcapsfeatures.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmeta.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbufferlist.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpadtemplate.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstevent.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstformat.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstiterator.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttaglist.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsample.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsegment.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmessage.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstquery.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttoc.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontext.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdevice.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststreams.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststreamcollection.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttask.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttaskpool.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbus.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelementfactory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstplugin.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmacros.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpluginfeature.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsturi.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstminiobject.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbufferpool.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstchildproxy.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdebugutils.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdevicemonitor.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdeviceprovider.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdynamictypefactory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelementmetadata.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsterror.h /usr/include/errno.h \
|
||||||
|
/usr/include/bits/errno.h /usr/include/linux/errno.h \
|
||||||
|
/usr/include/asm/errno.h /usr/include/asm-generic/errno.h \
|
||||||
|
/usr/include/asm-generic/errno-base.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstghostpad.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstinfo.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstparamspecs.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstvalue.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpipeline.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpoll.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpreset.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstprotection.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstregistry.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpromise.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsystemclock.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttagsetter.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttocsetter.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracer.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracerfactory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracerrecord.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttypefind.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttypefindfactory.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstutils.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstparse.h \
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcompat.h player.h
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gst.h:
|
||||||
|
/usr/include/glib-2.0/glib.h:
|
||||||
|
/usr/include/glib-2.0/glib/galloca.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtypes.h:
|
||||||
|
/usr/lib/glib-2.0/include/glibconfig.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmacros.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stddef.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/limits.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/syslimits.h:
|
||||||
|
/usr/include/limits.h:
|
||||||
|
/usr/include/bits/libc-header-start.h:
|
||||||
|
/usr/include/features.h:
|
||||||
|
/usr/include/sys/cdefs.h:
|
||||||
|
/usr/include/bits/wordsize.h:
|
||||||
|
/usr/include/bits/long-double.h:
|
||||||
|
/usr/include/gnu/stubs.h:
|
||||||
|
/usr/include/gnu/stubs-64.h:
|
||||||
|
/usr/include/bits/posix1_lim.h:
|
||||||
|
/usr/include/bits/local_lim.h:
|
||||||
|
/usr/include/linux/limits.h:
|
||||||
|
/usr/include/bits/posix2_lim.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/float.h:
|
||||||
|
/usr/include/glib-2.0/glib/gversionmacros.h:
|
||||||
|
/usr/include/time.h:
|
||||||
|
/usr/include/bits/time.h:
|
||||||
|
/usr/include/bits/types.h:
|
||||||
|
/usr/include/bits/timesize.h:
|
||||||
|
/usr/include/bits/typesizes.h:
|
||||||
|
/usr/include/bits/time64.h:
|
||||||
|
/usr/include/bits/types/clock_t.h:
|
||||||
|
/usr/include/bits/types/time_t.h:
|
||||||
|
/usr/include/bits/types/struct_tm.h:
|
||||||
|
/usr/include/bits/types/struct_timespec.h:
|
||||||
|
/usr/include/bits/endian.h:
|
||||||
|
/usr/include/bits/endianness.h:
|
||||||
|
/usr/include/bits/types/clockid_t.h:
|
||||||
|
/usr/include/bits/types/timer_t.h:
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h:
|
||||||
|
/usr/include/bits/types/locale_t.h:
|
||||||
|
/usr/include/bits/types/__locale_t.h:
|
||||||
|
/usr/include/glib-2.0/glib/garray.h:
|
||||||
|
/usr/include/glib-2.0/glib/gasyncqueue.h:
|
||||||
|
/usr/include/glib-2.0/glib/gthread.h:
|
||||||
|
/usr/include/glib-2.0/glib/gatomic.h:
|
||||||
|
/usr/include/glib-2.0/glib/gerror.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stdarg.h:
|
||||||
|
/usr/include/glib-2.0/glib/gquark.h:
|
||||||
|
/usr/include/glib-2.0/glib/gutils.h:
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
/usr/include/bits/waitflags.h:
|
||||||
|
/usr/include/bits/waitstatus.h:
|
||||||
|
/usr/include/bits/floatn.h:
|
||||||
|
/usr/include/bits/floatn-common.h:
|
||||||
|
/usr/include/sys/types.h:
|
||||||
|
/usr/include/bits/stdint-intn.h:
|
||||||
|
/usr/include/endian.h:
|
||||||
|
/usr/include/bits/byteswap.h:
|
||||||
|
/usr/include/bits/uintn-identity.h:
|
||||||
|
/usr/include/sys/select.h:
|
||||||
|
/usr/include/bits/select.h:
|
||||||
|
/usr/include/bits/types/sigset_t.h:
|
||||||
|
/usr/include/bits/types/__sigset_t.h:
|
||||||
|
/usr/include/bits/types/struct_timeval.h:
|
||||||
|
/usr/include/bits/pthreadtypes.h:
|
||||||
|
/usr/include/bits/thread-shared-types.h:
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h:
|
||||||
|
/usr/include/bits/struct_mutex.h:
|
||||||
|
/usr/include/bits/struct_rwlock.h:
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
/usr/include/bits/stdlib-bsearch.h:
|
||||||
|
/usr/include/bits/stdlib-float.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbacktrace.h:
|
||||||
|
/usr/include/signal.h:
|
||||||
|
/usr/include/bits/signum.h:
|
||||||
|
/usr/include/bits/signum-generic.h:
|
||||||
|
/usr/include/bits/types/sig_atomic_t.h:
|
||||||
|
/usr/include/bits/types/siginfo_t.h:
|
||||||
|
/usr/include/bits/types/__sigval_t.h:
|
||||||
|
/usr/include/bits/siginfo-arch.h:
|
||||||
|
/usr/include/bits/siginfo-consts.h:
|
||||||
|
/usr/include/bits/types/sigval_t.h:
|
||||||
|
/usr/include/bits/types/sigevent_t.h:
|
||||||
|
/usr/include/bits/sigevent-consts.h:
|
||||||
|
/usr/include/bits/sigaction.h:
|
||||||
|
/usr/include/bits/sigcontext.h:
|
||||||
|
/usr/include/bits/types/stack_t.h:
|
||||||
|
/usr/include/sys/ucontext.h:
|
||||||
|
/usr/include/bits/sigstack.h:
|
||||||
|
/usr/include/bits/ss_flags.h:
|
||||||
|
/usr/include/bits/types/struct_sigstack.h:
|
||||||
|
/usr/include/bits/sigthread.h:
|
||||||
|
/usr/include/bits/signal_ext.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbase64.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbitlock.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbookmarkfile.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbytes.h:
|
||||||
|
/usr/include/glib-2.0/glib/gcharset.h:
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h:
|
||||||
|
/usr/include/glib-2.0/glib/gconvert.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdataset.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdate.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdatetime.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtimezone.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdir.h:
|
||||||
|
/usr/include/dirent.h:
|
||||||
|
/usr/include/bits/dirent.h:
|
||||||
|
/usr/include/bits/dirent_ext.h:
|
||||||
|
/usr/include/glib-2.0/glib/genviron.h:
|
||||||
|
/usr/include/glib-2.0/glib/gfileutils.h:
|
||||||
|
/usr/include/glib-2.0/glib/ggettext.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghash.h:
|
||||||
|
/usr/include/glib-2.0/glib/glist.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmem.h:
|
||||||
|
/usr/include/glib-2.0/glib/gnode.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghmac.h:
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghook.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghostutils.h:
|
||||||
|
/usr/include/glib-2.0/glib/giochannel.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmain.h:
|
||||||
|
/usr/include/glib-2.0/glib/gpoll.h:
|
||||||
|
/usr/include/glib-2.0/glib/gslist.h:
|
||||||
|
/usr/include/glib-2.0/glib/gstring.h:
|
||||||
|
/usr/include/glib-2.0/glib/gunicode.h:
|
||||||
|
/usr/include/glib-2.0/glib/gkeyfile.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmappedfile.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmarkup.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmessages.h:
|
||||||
|
/usr/include/glib-2.0/glib/gvariant.h:
|
||||||
|
/usr/include/glib-2.0/glib/gvarianttype.h:
|
||||||
|
/usr/include/glib-2.0/glib/goption.h:
|
||||||
|
/usr/include/glib-2.0/glib/gpattern.h:
|
||||||
|
/usr/include/glib-2.0/glib/gprimes.h:
|
||||||
|
/usr/include/glib-2.0/glib/gqsort.h:
|
||||||
|
/usr/include/glib-2.0/glib/gqueue.h:
|
||||||
|
/usr/include/glib-2.0/glib/grand.h:
|
||||||
|
/usr/include/glib-2.0/glib/grcbox.h:
|
||||||
|
/usr/include/glib-2.0/glib/grefcount.h:
|
||||||
|
/usr/include/glib-2.0/glib/grefstring.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmem.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmacros.h:
|
||||||
|
/usr/include/glib-2.0/glib/gregex.h:
|
||||||
|
/usr/include/glib-2.0/glib/gscanner.h:
|
||||||
|
/usr/include/glib-2.0/glib/gsequence.h:
|
||||||
|
/usr/include/glib-2.0/glib/gshell.h:
|
||||||
|
/usr/include/glib-2.0/glib/gslice.h:
|
||||||
|
/usr/include/glib-2.0/glib/gspawn.h:
|
||||||
|
/usr/include/glib-2.0/glib/gstrfuncs.h:
|
||||||
|
/usr/include/glib-2.0/glib/gstringchunk.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtestutils.h:
|
||||||
|
/usr/include/string.h:
|
||||||
|
/usr/include/strings.h:
|
||||||
|
/usr/include/glib-2.0/glib/gthreadpool.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtimer.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtrashstack.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtree.h:
|
||||||
|
/usr/include/glib-2.0/glib/gurifuncs.h:
|
||||||
|
/usr/include/glib-2.0/glib/guuid.h:
|
||||||
|
/usr/include/glib-2.0/glib/gversion.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gallocator.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcache.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcompletion.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gmain.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/grel.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gthread.h:
|
||||||
|
/usr/include/pthread.h:
|
||||||
|
/usr/include/sched.h:
|
||||||
|
/usr/include/bits/sched.h:
|
||||||
|
/usr/include/bits/types/struct_sched_param.h:
|
||||||
|
/usr/include/bits/cpu-set.h:
|
||||||
|
/usr/include/bits/setjmp.h:
|
||||||
|
/usr/include/glib-2.0/glib/glib-autocleanups.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/glib-compat.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstenumtypes.h:
|
||||||
|
/usr/include/glib-2.0/glib-object.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gbinding.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gobject.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gtype.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gvalue.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gparam.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gclosure.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gsignal.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gmarshal.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gboxed.h:
|
||||||
|
/usr/include/glib-2.0/gobject/glib-types.h:
|
||||||
|
/usr/include/glib-2.0/gobject/genums.h:
|
||||||
|
/usr/include/glib-2.0/gobject/glib-enumtypes.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gparamspecs.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gsourceclosure.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gtypemodule.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gtypeplugin.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluearray.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluetypes.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gobject-autocleanups.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstconfig.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstversion.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstatomicqueue.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbin.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelement.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstobject.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontrolbinding.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontrolsource.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstclock.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpad.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbuffer.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstminiobject.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstallocator.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmemory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcaps.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststructure.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdatetime.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcapsfeatures.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmeta.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbufferlist.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpadtemplate.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstevent.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstformat.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstiterator.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttaglist.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsample.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsegment.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmessage.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstquery.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttoc.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcontext.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdevice.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststreams.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gststreamcollection.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttask.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttaskpool.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbus.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelementfactory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstplugin.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstmacros.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpluginfeature.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsturi.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstminiobject.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstbufferpool.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstchildproxy.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdebugutils.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdevicemonitor.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdeviceprovider.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdeviceproviderfactory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstdynamictypefactory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstelementmetadata.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsterror.h:
|
||||||
|
/usr/include/errno.h:
|
||||||
|
/usr/include/bits/errno.h:
|
||||||
|
/usr/include/linux/errno.h:
|
||||||
|
/usr/include/asm/errno.h:
|
||||||
|
/usr/include/asm-generic/errno.h:
|
||||||
|
/usr/include/asm-generic/errno-base.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstghostpad.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstinfo.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstparamspecs.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstvalue.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpipeline.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpoll.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpreset.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstprotection.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstregistry.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstpromise.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstsystemclock.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttagsetter.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttocsetter.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracer.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracerfactory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttracerrecord.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttypefind.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gsttypefindfactory.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstutils.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstparse.h:
|
||||||
|
/usr/include/gstreamer-1.0/gst/gstcompat.h:
|
||||||
|
player.h:
|
1569
src/.deps/prefs.Po
Normal file
1569
src/.deps/prefs.Po
Normal file
File diff suppressed because it is too large
Load Diff
1581
src/.deps/ui.Po
Normal file
1581
src/.deps/ui.Po
Normal file
File diff suppressed because it is too large
Load Diff
330
src/.deps/util.Po
Normal file
330
src/.deps/util.Po
Normal file
@@ -0,0 +1,330 @@
|
|||||||
|
util.o: util.c /usr/include/stdc-predef.h /usr/include/string.h \
|
||||||
|
/usr/include/bits/libc-header-start.h /usr/include/features.h \
|
||||||
|
/usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \
|
||||||
|
/usr/include/bits/long-double.h /usr/include/gnu/stubs.h \
|
||||||
|
/usr/include/gnu/stubs-64.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stddef.h \
|
||||||
|
/usr/include/bits/types/locale_t.h /usr/include/bits/types/__locale_t.h \
|
||||||
|
/usr/include/strings.h /usr/include/time.h /usr/include/bits/time.h \
|
||||||
|
/usr/include/bits/types.h /usr/include/bits/timesize.h \
|
||||||
|
/usr/include/bits/typesizes.h /usr/include/bits/time64.h \
|
||||||
|
/usr/include/bits/types/clock_t.h /usr/include/bits/types/time_t.h \
|
||||||
|
/usr/include/bits/types/struct_tm.h \
|
||||||
|
/usr/include/bits/types/struct_timespec.h /usr/include/bits/endian.h \
|
||||||
|
/usr/include/bits/endianness.h /usr/include/bits/types/clockid_t.h \
|
||||||
|
/usr/include/bits/types/timer_t.h \
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h /usr/include/glib-2.0/glib.h \
|
||||||
|
/usr/include/glib-2.0/glib/galloca.h /usr/include/glib-2.0/glib/gtypes.h \
|
||||||
|
/usr/lib/glib-2.0/include/glibconfig.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmacros.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/limits.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/syslimits.h \
|
||||||
|
/usr/include/limits.h /usr/include/bits/posix1_lim.h \
|
||||||
|
/usr/include/bits/local_lim.h /usr/include/linux/limits.h \
|
||||||
|
/usr/include/bits/posix2_lim.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/float.h \
|
||||||
|
/usr/include/glib-2.0/glib/gversionmacros.h \
|
||||||
|
/usr/include/glib-2.0/glib/garray.h \
|
||||||
|
/usr/include/glib-2.0/glib/gasyncqueue.h \
|
||||||
|
/usr/include/glib-2.0/glib/gthread.h \
|
||||||
|
/usr/include/glib-2.0/glib/gatomic.h /usr/include/glib-2.0/glib/gerror.h \
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stdarg.h \
|
||||||
|
/usr/include/glib-2.0/glib/gquark.h /usr/include/glib-2.0/glib/gutils.h \
|
||||||
|
/usr/include/stdlib.h /usr/include/bits/waitflags.h \
|
||||||
|
/usr/include/bits/waitstatus.h /usr/include/bits/floatn.h \
|
||||||
|
/usr/include/bits/floatn-common.h /usr/include/sys/types.h \
|
||||||
|
/usr/include/bits/stdint-intn.h /usr/include/endian.h \
|
||||||
|
/usr/include/bits/byteswap.h /usr/include/bits/uintn-identity.h \
|
||||||
|
/usr/include/sys/select.h /usr/include/bits/select.h \
|
||||||
|
/usr/include/bits/types/sigset_t.h /usr/include/bits/types/__sigset_t.h \
|
||||||
|
/usr/include/bits/types/struct_timeval.h \
|
||||||
|
/usr/include/bits/pthreadtypes.h /usr/include/bits/thread-shared-types.h \
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h /usr/include/bits/struct_mutex.h \
|
||||||
|
/usr/include/bits/struct_rwlock.h /usr/include/alloca.h \
|
||||||
|
/usr/include/bits/stdlib-bsearch.h /usr/include/bits/stdlib-float.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbacktrace.h /usr/include/signal.h \
|
||||||
|
/usr/include/bits/signum.h /usr/include/bits/signum-generic.h \
|
||||||
|
/usr/include/bits/types/sig_atomic_t.h \
|
||||||
|
/usr/include/bits/types/siginfo_t.h /usr/include/bits/types/__sigval_t.h \
|
||||||
|
/usr/include/bits/siginfo-arch.h /usr/include/bits/siginfo-consts.h \
|
||||||
|
/usr/include/bits/types/sigval_t.h /usr/include/bits/types/sigevent_t.h \
|
||||||
|
/usr/include/bits/sigevent-consts.h /usr/include/bits/sigaction.h \
|
||||||
|
/usr/include/bits/sigcontext.h /usr/include/bits/types/stack_t.h \
|
||||||
|
/usr/include/sys/ucontext.h /usr/include/bits/sigstack.h \
|
||||||
|
/usr/include/bits/ss_flags.h /usr/include/bits/types/struct_sigstack.h \
|
||||||
|
/usr/include/bits/sigthread.h /usr/include/bits/signal_ext.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbase64.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbitlock.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbookmarkfile.h \
|
||||||
|
/usr/include/glib-2.0/glib/gbytes.h \
|
||||||
|
/usr/include/glib-2.0/glib/gcharset.h \
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h \
|
||||||
|
/usr/include/glib-2.0/glib/gconvert.h \
|
||||||
|
/usr/include/glib-2.0/glib/gdataset.h /usr/include/glib-2.0/glib/gdate.h \
|
||||||
|
/usr/include/glib-2.0/glib/gdatetime.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtimezone.h /usr/include/glib-2.0/glib/gdir.h \
|
||||||
|
/usr/include/dirent.h /usr/include/bits/dirent.h \
|
||||||
|
/usr/include/bits/dirent_ext.h /usr/include/glib-2.0/glib/genviron.h \
|
||||||
|
/usr/include/glib-2.0/glib/gfileutils.h \
|
||||||
|
/usr/include/glib-2.0/glib/ggettext.h /usr/include/glib-2.0/glib/ghash.h \
|
||||||
|
/usr/include/glib-2.0/glib/glist.h /usr/include/glib-2.0/glib/gmem.h \
|
||||||
|
/usr/include/glib-2.0/glib/gnode.h /usr/include/glib-2.0/glib/ghmac.h \
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h \
|
||||||
|
/usr/include/glib-2.0/glib/ghook.h \
|
||||||
|
/usr/include/glib-2.0/glib/ghostutils.h \
|
||||||
|
/usr/include/glib-2.0/glib/giochannel.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmain.h /usr/include/glib-2.0/glib/gpoll.h \
|
||||||
|
/usr/include/glib-2.0/glib/gslist.h /usr/include/glib-2.0/glib/gstring.h \
|
||||||
|
/usr/include/glib-2.0/glib/gunicode.h \
|
||||||
|
/usr/include/glib-2.0/glib/gkeyfile.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmappedfile.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmarkup.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmessages.h \
|
||||||
|
/usr/include/glib-2.0/glib/gvariant.h \
|
||||||
|
/usr/include/glib-2.0/glib/gvarianttype.h \
|
||||||
|
/usr/include/glib-2.0/glib/goption.h \
|
||||||
|
/usr/include/glib-2.0/glib/gpattern.h \
|
||||||
|
/usr/include/glib-2.0/glib/gprimes.h /usr/include/glib-2.0/glib/gqsort.h \
|
||||||
|
/usr/include/glib-2.0/glib/gqueue.h /usr/include/glib-2.0/glib/grand.h \
|
||||||
|
/usr/include/glib-2.0/glib/grcbox.h \
|
||||||
|
/usr/include/glib-2.0/glib/grefcount.h \
|
||||||
|
/usr/include/glib-2.0/glib/grefstring.h \
|
||||||
|
/usr/include/glib-2.0/glib/gmem.h /usr/include/glib-2.0/glib/gmacros.h \
|
||||||
|
/usr/include/glib-2.0/glib/gregex.h \
|
||||||
|
/usr/include/glib-2.0/glib/gscanner.h \
|
||||||
|
/usr/include/glib-2.0/glib/gsequence.h \
|
||||||
|
/usr/include/glib-2.0/glib/gshell.h /usr/include/glib-2.0/glib/gslice.h \
|
||||||
|
/usr/include/glib-2.0/glib/gspawn.h \
|
||||||
|
/usr/include/glib-2.0/glib/gstrfuncs.h \
|
||||||
|
/usr/include/glib-2.0/glib/gstringchunk.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtestutils.h \
|
||||||
|
/usr/include/glib-2.0/glib/gthreadpool.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtimer.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtrashstack.h \
|
||||||
|
/usr/include/glib-2.0/glib/gtree.h \
|
||||||
|
/usr/include/glib-2.0/glib/gurifuncs.h \
|
||||||
|
/usr/include/glib-2.0/glib/guuid.h /usr/include/glib-2.0/glib/gversion.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gallocator.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcache.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcompletion.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gmain.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/grel.h \
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gthread.h /usr/include/pthread.h \
|
||||||
|
/usr/include/sched.h /usr/include/bits/sched.h \
|
||||||
|
/usr/include/bits/types/struct_sched_param.h /usr/include/bits/cpu-set.h \
|
||||||
|
/usr/include/bits/setjmp.h \
|
||||||
|
/usr/include/glib-2.0/glib/glib-autocleanups.h \
|
||||||
|
/usr/include/glib-2.0/glib-object.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gbinding.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gobject.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gtype.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gvalue.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gparam.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gclosure.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gsignal.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gmarshal.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gboxed.h \
|
||||||
|
/usr/include/glib-2.0/gobject/glib-types.h \
|
||||||
|
/usr/include/glib-2.0/gobject/genums.h \
|
||||||
|
/usr/include/glib-2.0/gobject/glib-enumtypes.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gparamspecs.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gsourceclosure.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gtypemodule.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gtypeplugin.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluearray.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluetypes.h \
|
||||||
|
/usr/include/glib-2.0/gobject/gobject-autocleanups.h util.h ../config.h
|
||||||
|
/usr/include/stdc-predef.h:
|
||||||
|
/usr/include/string.h:
|
||||||
|
/usr/include/bits/libc-header-start.h:
|
||||||
|
/usr/include/features.h:
|
||||||
|
/usr/include/sys/cdefs.h:
|
||||||
|
/usr/include/bits/wordsize.h:
|
||||||
|
/usr/include/bits/long-double.h:
|
||||||
|
/usr/include/gnu/stubs.h:
|
||||||
|
/usr/include/gnu/stubs-64.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stddef.h:
|
||||||
|
/usr/include/bits/types/locale_t.h:
|
||||||
|
/usr/include/bits/types/__locale_t.h:
|
||||||
|
/usr/include/strings.h:
|
||||||
|
/usr/include/time.h:
|
||||||
|
/usr/include/bits/time.h:
|
||||||
|
/usr/include/bits/types.h:
|
||||||
|
/usr/include/bits/timesize.h:
|
||||||
|
/usr/include/bits/typesizes.h:
|
||||||
|
/usr/include/bits/time64.h:
|
||||||
|
/usr/include/bits/types/clock_t.h:
|
||||||
|
/usr/include/bits/types/time_t.h:
|
||||||
|
/usr/include/bits/types/struct_tm.h:
|
||||||
|
/usr/include/bits/types/struct_timespec.h:
|
||||||
|
/usr/include/bits/endian.h:
|
||||||
|
/usr/include/bits/endianness.h:
|
||||||
|
/usr/include/bits/types/clockid_t.h:
|
||||||
|
/usr/include/bits/types/timer_t.h:
|
||||||
|
/usr/include/bits/types/struct_itimerspec.h:
|
||||||
|
/usr/include/glib-2.0/glib.h:
|
||||||
|
/usr/include/glib-2.0/glib/galloca.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtypes.h:
|
||||||
|
/usr/lib/glib-2.0/include/glibconfig.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmacros.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/limits.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include-fixed/syslimits.h:
|
||||||
|
/usr/include/limits.h:
|
||||||
|
/usr/include/bits/posix1_lim.h:
|
||||||
|
/usr/include/bits/local_lim.h:
|
||||||
|
/usr/include/linux/limits.h:
|
||||||
|
/usr/include/bits/posix2_lim.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/float.h:
|
||||||
|
/usr/include/glib-2.0/glib/gversionmacros.h:
|
||||||
|
/usr/include/glib-2.0/glib/garray.h:
|
||||||
|
/usr/include/glib-2.0/glib/gasyncqueue.h:
|
||||||
|
/usr/include/glib-2.0/glib/gthread.h:
|
||||||
|
/usr/include/glib-2.0/glib/gatomic.h:
|
||||||
|
/usr/include/glib-2.0/glib/gerror.h:
|
||||||
|
/usr/lib/gcc/x86_64-pc-linux-gnu/10.1.0/include/stdarg.h:
|
||||||
|
/usr/include/glib-2.0/glib/gquark.h:
|
||||||
|
/usr/include/glib-2.0/glib/gutils.h:
|
||||||
|
/usr/include/stdlib.h:
|
||||||
|
/usr/include/bits/waitflags.h:
|
||||||
|
/usr/include/bits/waitstatus.h:
|
||||||
|
/usr/include/bits/floatn.h:
|
||||||
|
/usr/include/bits/floatn-common.h:
|
||||||
|
/usr/include/sys/types.h:
|
||||||
|
/usr/include/bits/stdint-intn.h:
|
||||||
|
/usr/include/endian.h:
|
||||||
|
/usr/include/bits/byteswap.h:
|
||||||
|
/usr/include/bits/uintn-identity.h:
|
||||||
|
/usr/include/sys/select.h:
|
||||||
|
/usr/include/bits/select.h:
|
||||||
|
/usr/include/bits/types/sigset_t.h:
|
||||||
|
/usr/include/bits/types/__sigset_t.h:
|
||||||
|
/usr/include/bits/types/struct_timeval.h:
|
||||||
|
/usr/include/bits/pthreadtypes.h:
|
||||||
|
/usr/include/bits/thread-shared-types.h:
|
||||||
|
/usr/include/bits/pthreadtypes-arch.h:
|
||||||
|
/usr/include/bits/struct_mutex.h:
|
||||||
|
/usr/include/bits/struct_rwlock.h:
|
||||||
|
/usr/include/alloca.h:
|
||||||
|
/usr/include/bits/stdlib-bsearch.h:
|
||||||
|
/usr/include/bits/stdlib-float.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbacktrace.h:
|
||||||
|
/usr/include/signal.h:
|
||||||
|
/usr/include/bits/signum.h:
|
||||||
|
/usr/include/bits/signum-generic.h:
|
||||||
|
/usr/include/bits/types/sig_atomic_t.h:
|
||||||
|
/usr/include/bits/types/siginfo_t.h:
|
||||||
|
/usr/include/bits/types/__sigval_t.h:
|
||||||
|
/usr/include/bits/siginfo-arch.h:
|
||||||
|
/usr/include/bits/siginfo-consts.h:
|
||||||
|
/usr/include/bits/types/sigval_t.h:
|
||||||
|
/usr/include/bits/types/sigevent_t.h:
|
||||||
|
/usr/include/bits/sigevent-consts.h:
|
||||||
|
/usr/include/bits/sigaction.h:
|
||||||
|
/usr/include/bits/sigcontext.h:
|
||||||
|
/usr/include/bits/types/stack_t.h:
|
||||||
|
/usr/include/sys/ucontext.h:
|
||||||
|
/usr/include/bits/sigstack.h:
|
||||||
|
/usr/include/bits/ss_flags.h:
|
||||||
|
/usr/include/bits/types/struct_sigstack.h:
|
||||||
|
/usr/include/bits/sigthread.h:
|
||||||
|
/usr/include/bits/signal_ext.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbase64.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbitlock.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbookmarkfile.h:
|
||||||
|
/usr/include/glib-2.0/glib/gbytes.h:
|
||||||
|
/usr/include/glib-2.0/glib/gcharset.h:
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h:
|
||||||
|
/usr/include/glib-2.0/glib/gconvert.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdataset.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdate.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdatetime.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtimezone.h:
|
||||||
|
/usr/include/glib-2.0/glib/gdir.h:
|
||||||
|
/usr/include/dirent.h:
|
||||||
|
/usr/include/bits/dirent.h:
|
||||||
|
/usr/include/bits/dirent_ext.h:
|
||||||
|
/usr/include/glib-2.0/glib/genviron.h:
|
||||||
|
/usr/include/glib-2.0/glib/gfileutils.h:
|
||||||
|
/usr/include/glib-2.0/glib/ggettext.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghash.h:
|
||||||
|
/usr/include/glib-2.0/glib/glist.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmem.h:
|
||||||
|
/usr/include/glib-2.0/glib/gnode.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghmac.h:
|
||||||
|
/usr/include/glib-2.0/glib/gchecksum.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghook.h:
|
||||||
|
/usr/include/glib-2.0/glib/ghostutils.h:
|
||||||
|
/usr/include/glib-2.0/glib/giochannel.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmain.h:
|
||||||
|
/usr/include/glib-2.0/glib/gpoll.h:
|
||||||
|
/usr/include/glib-2.0/glib/gslist.h:
|
||||||
|
/usr/include/glib-2.0/glib/gstring.h:
|
||||||
|
/usr/include/glib-2.0/glib/gunicode.h:
|
||||||
|
/usr/include/glib-2.0/glib/gkeyfile.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmappedfile.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmarkup.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmessages.h:
|
||||||
|
/usr/include/glib-2.0/glib/gvariant.h:
|
||||||
|
/usr/include/glib-2.0/glib/gvarianttype.h:
|
||||||
|
/usr/include/glib-2.0/glib/goption.h:
|
||||||
|
/usr/include/glib-2.0/glib/gpattern.h:
|
||||||
|
/usr/include/glib-2.0/glib/gprimes.h:
|
||||||
|
/usr/include/glib-2.0/glib/gqsort.h:
|
||||||
|
/usr/include/glib-2.0/glib/gqueue.h:
|
||||||
|
/usr/include/glib-2.0/glib/grand.h:
|
||||||
|
/usr/include/glib-2.0/glib/grcbox.h:
|
||||||
|
/usr/include/glib-2.0/glib/grefcount.h:
|
||||||
|
/usr/include/glib-2.0/glib/grefstring.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmem.h:
|
||||||
|
/usr/include/glib-2.0/glib/gmacros.h:
|
||||||
|
/usr/include/glib-2.0/glib/gregex.h:
|
||||||
|
/usr/include/glib-2.0/glib/gscanner.h:
|
||||||
|
/usr/include/glib-2.0/glib/gsequence.h:
|
||||||
|
/usr/include/glib-2.0/glib/gshell.h:
|
||||||
|
/usr/include/glib-2.0/glib/gslice.h:
|
||||||
|
/usr/include/glib-2.0/glib/gspawn.h:
|
||||||
|
/usr/include/glib-2.0/glib/gstrfuncs.h:
|
||||||
|
/usr/include/glib-2.0/glib/gstringchunk.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtestutils.h:
|
||||||
|
/usr/include/glib-2.0/glib/gthreadpool.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtimer.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtrashstack.h:
|
||||||
|
/usr/include/glib-2.0/glib/gtree.h:
|
||||||
|
/usr/include/glib-2.0/glib/gurifuncs.h:
|
||||||
|
/usr/include/glib-2.0/glib/guuid.h:
|
||||||
|
/usr/include/glib-2.0/glib/gversion.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gallocator.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcache.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gcompletion.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gmain.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/grel.h:
|
||||||
|
/usr/include/glib-2.0/glib/deprecated/gthread.h:
|
||||||
|
/usr/include/pthread.h:
|
||||||
|
/usr/include/sched.h:
|
||||||
|
/usr/include/bits/sched.h:
|
||||||
|
/usr/include/bits/types/struct_sched_param.h:
|
||||||
|
/usr/include/bits/cpu-set.h:
|
||||||
|
/usr/include/bits/setjmp.h:
|
||||||
|
/usr/include/glib-2.0/glib/glib-autocleanups.h:
|
||||||
|
/usr/include/glib-2.0/glib-object.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gbinding.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gobject.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gtype.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gvalue.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gparam.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gclosure.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gsignal.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gmarshal.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gboxed.h:
|
||||||
|
/usr/include/glib-2.0/gobject/glib-types.h:
|
||||||
|
/usr/include/glib-2.0/gobject/genums.h:
|
||||||
|
/usr/include/glib-2.0/gobject/glib-enumtypes.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gparamspecs.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gsourceclosure.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gtypemodule.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gtypeplugin.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluearray.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gvaluetypes.h:
|
||||||
|
/usr/include/glib-2.0/gobject/gobject-autocleanups.h:
|
||||||
|
util.h:
|
||||||
|
../config.h:
|
@@ -9,7 +9,8 @@ AM_CFLAGS = \
|
|||||||
-DALARM_CLOCK_DATADIR=\"$(datadir)\" \
|
-DALARM_CLOCK_DATADIR=\"$(datadir)\" \
|
||||||
-DALARM_CLOCK_PKGDATADIR=\"$(pkgdatadir)\" \
|
-DALARM_CLOCK_PKGDATADIR=\"$(pkgdatadir)\" \
|
||||||
@BASE_CFLAGS@ @GTK_CFLAGS@ @GSTREAMER_CFLAGS@ \
|
@BASE_CFLAGS@ @GTK_CFLAGS@ @GSTREAMER_CFLAGS@ \
|
||||||
@GNOME_CFLAGS@ @APP_INDICATOR_CFLAGS@ @WARN_CFLAGS@
|
@GNOME_CFLAGS@ @APP_INDICATOR_CFLAGS@ @WARN_CFLAGS@ \
|
||||||
|
-Wno-format-y2k
|
||||||
|
|
||||||
LDADD = \
|
LDADD = \
|
||||||
@BASE_LIBS@ @GTK_LIBS@ @GSTREAMER_LIBS@ \
|
@BASE_LIBS@ @GTK_LIBS@ @GSTREAMER_LIBS@ \
|
||||||
|
@@ -547,6 +547,16 @@ unique_app_message_cb (UniqueApp *app,
|
|||||||
gtk_action_activate (GTK_ACTION (applet->action_toggle_list_win));
|
gtk_action_activate (GTK_ACTION (applet->action_toggle_list_win));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
res = UNIQUE_RESPONSE_OK;
|
||||||
|
break;
|
||||||
|
case UNIQUE_STOP_ALL:
|
||||||
|
g_debug ("AlarmApplet: unique_app_message: STOP_ALARMS");
|
||||||
|
gtk_action_activate (GTK_ACTION (applet->action_stop_all));
|
||||||
|
res = UNIQUE_RESPONSE_OK;
|
||||||
|
break;
|
||||||
|
case UNIQUE_SNOOZE_ALL:
|
||||||
|
g_debug ("AlarmApplet: unique_app_message: SNOOZE_ALARMS");
|
||||||
|
gtk_action_activate (GTK_ACTION (applet->action_snooze_all));
|
||||||
res = UNIQUE_RESPONSE_OK;
|
res = UNIQUE_RESPONSE_OK;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@@ -576,32 +586,20 @@ alarm_applet_init (int *argc, char ***argv)
|
|||||||
GOptionContext *context;
|
GOptionContext *context;
|
||||||
|
|
||||||
gboolean hidden = FALSE; // Start hidden
|
gboolean hidden = FALSE; // Start hidden
|
||||||
|
gboolean stop_all = FALSE; // Stop all alarms
|
||||||
|
gboolean snooze_all = FALSE; // Snooze all alarms
|
||||||
|
|
||||||
// Command line options
|
// Command line options
|
||||||
GOptionEntry entries[] =
|
GOptionEntry entries[] =
|
||||||
{
|
{
|
||||||
{ "hidden", 0, 0, G_OPTION_ARG_NONE, &hidden, "Start hidden", NULL },
|
{ "hidden", 0, 0, G_OPTION_ARG_NONE, &hidden, "Start hidden", NULL },
|
||||||
|
{ "stop-all", 0, 0, G_OPTION_ARG_NONE, &stop_all, "Stop all alarms",
|
||||||
|
NULL },
|
||||||
|
{ "snooze-all", 0, 0, G_OPTION_ARG_NONE, &snooze_all,
|
||||||
|
"Snooze all alarms", NULL },
|
||||||
{ NULL }
|
{ NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
// Initialize unique app
|
|
||||||
unique_app = unique_app_new ("com.pseudoberries.AlarmClock", NULL);
|
|
||||||
|
|
||||||
// Check if we're already running
|
|
||||||
if (unique_app_is_running (unique_app)) {
|
|
||||||
g_printerr(_("%s is already running, exiting...\n"), PACKAGE);
|
|
||||||
|
|
||||||
// Send activate message
|
|
||||||
UniqueMessageData *message = unique_message_data_new ();
|
|
||||||
|
|
||||||
unique_app_send_message (unique_app, UNIQUE_ACTIVATE, message);
|
|
||||||
|
|
||||||
unique_message_data_free (message);
|
|
||||||
g_object_unref (unique_app);
|
|
||||||
|
|
||||||
exit (EXIT_SUCCESS);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Parse command-line arguments
|
// Parse command-line arguments
|
||||||
context = g_option_context_new (NULL);
|
context = g_option_context_new (NULL);
|
||||||
g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
|
g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
|
||||||
@@ -612,6 +610,31 @@ alarm_applet_init (int *argc, char ***argv)
|
|||||||
exit (EXIT_FAILURE);
|
exit (EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Initialize unique app
|
||||||
|
unique_app = unique_app_new ("com.pseudoberries.AlarmClock", NULL);
|
||||||
|
unique_app_add_command(unique_app, "StopAllAlarms", UNIQUE_STOP_ALL);
|
||||||
|
unique_app_add_command(unique_app, "SnoozeAllAlarms", UNIQUE_SNOOZE_ALL);
|
||||||
|
|
||||||
|
// Check if we're already running
|
||||||
|
if (unique_app_is_running (unique_app)) {
|
||||||
|
// Send activate message
|
||||||
|
UniqueMessageData *message = unique_message_data_new ();
|
||||||
|
|
||||||
|
if (stop_all) {
|
||||||
|
unique_app_send_message (unique_app, UNIQUE_STOP_ALL, message);
|
||||||
|
} else if (snooze_all) {
|
||||||
|
unique_app_send_message (unique_app, UNIQUE_SNOOZE_ALL, message);
|
||||||
|
} else {
|
||||||
|
g_printerr(_("%s is already running, exiting...\n"), PACKAGE);
|
||||||
|
unique_app_send_message (unique_app, UNIQUE_ACTIVATE, message);
|
||||||
|
}
|
||||||
|
|
||||||
|
unique_message_data_free (message);
|
||||||
|
g_object_unref (unique_app);
|
||||||
|
|
||||||
|
exit (EXIT_SUCCESS);
|
||||||
|
}
|
||||||
|
|
||||||
// Initialize applet struct
|
// Initialize applet struct
|
||||||
applet = g_new0 (AlarmApplet, 1);
|
applet = g_new0 (AlarmApplet, 1);
|
||||||
|
|
||||||
|
@@ -46,7 +46,7 @@ G_BEGIN_DECLS
|
|||||||
|
|
||||||
typedef struct _AlarmApplet AlarmApplet;
|
typedef struct _AlarmApplet AlarmApplet;
|
||||||
|
|
||||||
GHashTable *app_command_map;
|
//GHashTable *app_command_map;
|
||||||
|
|
||||||
void alarm_applet_label_update (AlarmApplet *applet);
|
void alarm_applet_label_update (AlarmApplet *applet);
|
||||||
void alarm_applet_clear_alarms (AlarmApplet *applet);
|
void alarm_applet_clear_alarms (AlarmApplet *applet);
|
||||||
@@ -72,6 +72,11 @@ typedef enum {
|
|||||||
LABEL_TYPE_REMAIN,
|
LABEL_TYPE_REMAIN,
|
||||||
} LabelType;
|
} LabelType;
|
||||||
|
|
||||||
|
typedef enum {
|
||||||
|
UNIQUE_STOP_ALL = 1,
|
||||||
|
UNIQUE_SNOOZE_ALL,
|
||||||
|
} UniqueCustomCommandID;
|
||||||
|
|
||||||
struct _AlarmApplet {
|
struct _AlarmApplet {
|
||||||
/* Unique app */
|
/* Unique app */
|
||||||
UniqueApp *unique_app;
|
UniqueApp *unique_app;
|
||||||
|
BIN
src/alarm-clock-applet
Executable file
BIN
src/alarm-clock-applet
Executable file
Binary file not shown.
@@ -236,7 +236,6 @@ alarm_list_window_update_row (AlarmListWindow *list_window, GtkTreeIter *iter)
|
|||||||
struct tm *tm;
|
struct tm *tm;
|
||||||
|
|
||||||
const gchar *type_col;
|
const gchar *type_col;
|
||||||
const gchar *time_format;
|
|
||||||
GString *time_col;
|
GString *time_col;
|
||||||
gchar *label_col;
|
gchar *label_col;
|
||||||
|
|
||||||
@@ -254,15 +253,13 @@ alarm_list_window_update_row (AlarmListWindow *list_window, GtkTreeIter *iter)
|
|||||||
|
|
||||||
if (a->type == ALARM_TYPE_CLOCK) {
|
if (a->type == ALARM_TYPE_CLOCK) {
|
||||||
type_col = ALARM_ICON;
|
type_col = ALARM_ICON;
|
||||||
time_format = TIME_COL_CLOCK_FORMAT;
|
strftime(tmp, sizeof(tmp), TIME_COL_CLOCK_FORMAT, tm);
|
||||||
} else {
|
} else {
|
||||||
type_col = TIMER_ICON;
|
type_col = TIMER_ICON;
|
||||||
time_format = TIME_COL_TIMER_FORMAT;
|
strftime(tmp, sizeof(tmp), TIME_COL_TIMER_FORMAT, tm);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create time column
|
// Create time column
|
||||||
strftime(tmp, sizeof(tmp), time_format, tm);
|
|
||||||
|
|
||||||
time_col = g_string_new (tmp);
|
time_col = g_string_new (tmp);
|
||||||
if (a->type == ALARM_TYPE_CLOCK && a->repeat != ALARM_REPEAT_NONE) {
|
if (a->type == ALARM_TYPE_CLOCK && a->repeat != ALARM_REPEAT_NONE) {
|
||||||
tmp2 = alarm_repeat_to_pretty (a->repeat);
|
tmp2 = alarm_repeat_to_pretty (a->repeat);
|
||||||
|
@@ -48,6 +48,21 @@ alarm_settings_changed_time (GtkSpinButton *spinbutton, gpointer data);
|
|||||||
void
|
void
|
||||||
alarm_settings_changed_repeat (GtkToggleButton *togglebutton, gpointer data);
|
alarm_settings_changed_repeat (GtkToggleButton *togglebutton, gpointer data);
|
||||||
|
|
||||||
|
void
|
||||||
|
set_repeat_toggle_buttons(AlarmSettingsDialog *dialog, AlarmRepeat repeat);
|
||||||
|
|
||||||
|
void
|
||||||
|
alarm_settings_repeat_all (GtkButton *button, gpointer data);
|
||||||
|
|
||||||
|
void
|
||||||
|
alarm_settings_repeat_weekday (GtkButton *button, gpointer data);
|
||||||
|
|
||||||
|
void
|
||||||
|
alarm_settings_repeat_weekend (GtkButton *button, gpointer data);
|
||||||
|
|
||||||
|
void
|
||||||
|
alarm_settings_repeat_clear (GtkButton *button, gpointer data);
|
||||||
|
|
||||||
void
|
void
|
||||||
alarm_settings_changed_notify_type (GtkToggleButton *togglebutton, gpointer data);
|
alarm_settings_changed_notify_type (GtkToggleButton *togglebutton, gpointer data);
|
||||||
|
|
||||||
@@ -577,6 +592,74 @@ alarm_settings_changed_repeat (GtkToggleButton *togglebutton, gpointer data)
|
|||||||
g_object_set (dialog->alarm, "repeat", new_rep, NULL);
|
g_object_set (dialog->alarm, "repeat", new_rep, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
set_repeat_toggle_buttons(AlarmSettingsDialog *dialog, AlarmRepeat repeat)
|
||||||
|
{
|
||||||
|
AlarmRepeat r;
|
||||||
|
gint i;
|
||||||
|
gboolean check;
|
||||||
|
|
||||||
|
for (r = ALARM_REPEAT_SUN, i = 0; r <= ALARM_REPEAT_SAT; r = 1 << ++i) {
|
||||||
|
check = (repeat & r) != 0;
|
||||||
|
g_object_set (dialog->repeat_check[i], "active", check, NULL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
alarm_settings_repeat_all (GtkButton *button, gpointer data)
|
||||||
|
{
|
||||||
|
AlarmApplet *applet = (AlarmApplet *)data;
|
||||||
|
AlarmSettingsDialog *dialog = applet->settings_dialog;
|
||||||
|
|
||||||
|
g_assert (dialog->alarm != NULL);
|
||||||
|
g_debug("Changed repeat to All");
|
||||||
|
|
||||||
|
set_repeat_toggle_buttons(dialog, ALARM_REPEAT_ALL);
|
||||||
|
g_object_set (dialog->alarm, "repeat", ALARM_REPEAT_ALL, NULL);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
alarm_settings_repeat_weekday (GtkButton *button, gpointer data)
|
||||||
|
{
|
||||||
|
AlarmApplet *applet = (AlarmApplet *)data;
|
||||||
|
AlarmSettingsDialog *dialog = applet->settings_dialog;
|
||||||
|
|
||||||
|
g_assert (dialog->alarm != NULL);
|
||||||
|
g_debug("Changed repeat to Weekdays");
|
||||||
|
|
||||||
|
set_repeat_toggle_buttons(dialog, ALARM_REPEAT_WEEKDAYS);
|
||||||
|
g_object_set (dialog->alarm, "repeat", ALARM_REPEAT_WEEKDAYS, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
alarm_settings_repeat_weekend (GtkButton *button, gpointer data)
|
||||||
|
{
|
||||||
|
AlarmApplet *applet = (AlarmApplet *)data;
|
||||||
|
AlarmSettingsDialog *dialog = applet->settings_dialog;
|
||||||
|
|
||||||
|
g_assert (dialog->alarm != NULL);
|
||||||
|
|
||||||
|
g_debug("Changed repeat to Weekends");
|
||||||
|
|
||||||
|
set_repeat_toggle_buttons(dialog, ALARM_REPEAT_WEEKENDS);
|
||||||
|
g_object_set (dialog->alarm, "repeat", ALARM_REPEAT_WEEKENDS, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
alarm_settings_repeat_clear (GtkButton *button, gpointer data)
|
||||||
|
{
|
||||||
|
AlarmApplet *applet = (AlarmApplet *)data;
|
||||||
|
AlarmSettingsDialog *dialog = applet->settings_dialog;
|
||||||
|
|
||||||
|
g_assert (dialog->alarm != NULL);
|
||||||
|
g_debug("Changed repeat to None");
|
||||||
|
|
||||||
|
set_repeat_toggle_buttons(dialog, ALARM_REPEAT_NONE);
|
||||||
|
g_object_set (dialog->alarm, "repeat", ALARM_REPEAT_NONE, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
alarm_settings_changed_notify_type (GtkToggleButton *togglebutton, gpointer data)
|
alarm_settings_changed_notify_type (GtkToggleButton *togglebutton, gpointer data)
|
||||||
{
|
{
|
||||||
@@ -745,11 +828,18 @@ alarm_settings_sound_preview (GtkButton *button, gpointer data)
|
|||||||
media_player_stop (dialog->player);
|
media_player_stop (dialog->player);
|
||||||
} else {
|
} else {
|
||||||
// Start preview player
|
// Start preview player
|
||||||
if (dialog->player == NULL)
|
if (dialog->player == NULL) {
|
||||||
dialog->player = media_player_new (dialog->alarm->sound_file,
|
dialog->player = media_player_new (dialog->alarm->sound_file,
|
||||||
dialog->alarm->sound_loop,
|
dialog->alarm->sound_loop,
|
||||||
preview_player_state_cb, dialog,
|
preview_player_state_cb, dialog,
|
||||||
media_player_error_cb, dialog->dialog);
|
media_player_error_cb, dialog->dialog);
|
||||||
|
if (dialog->player == NULL) {
|
||||||
|
// Unable to create player
|
||||||
|
alarm_error_trigger (dialog->alarm, ALARM_ERROR_PLAY,
|
||||||
|
_("Could not create player! Please check your sound settings."));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
g_debug ("AlarmSettingsDialog: preview_start...");
|
g_debug ("AlarmSettingsDialog: preview_start...");
|
||||||
media_player_start (dialog->player);
|
media_player_start (dialog->player);
|
||||||
|
57
src/alarm.c
57
src/alarm.c
@@ -922,7 +922,7 @@ alarm_error_quark (void)
|
|||||||
static void
|
static void
|
||||||
alarm_error (Alarm *alarm, GError *err)
|
alarm_error (Alarm *alarm, GError *err)
|
||||||
{
|
{
|
||||||
g_debug ("Alarm(%p) #%d: alarm_error: #%d: %s", alarm, alarm->id, err->code, err->message);
|
g_critical ("Alarm(%p) #%d: alarm_error: #%d: %s", alarm, alarm->id, err->code, err->message);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@@ -965,7 +965,7 @@ alarm_alarm (Alarm *alarm)
|
|||||||
// Do we want to repeat this alarm?
|
// Do we want to repeat this alarm?
|
||||||
if (alarm_should_repeat (alarm)) {
|
if (alarm_should_repeat (alarm)) {
|
||||||
g_debug ("Alarm(%p) #%d: alarm() Repeating...", alarm, alarm->id);
|
g_debug ("Alarm(%p) #%d: alarm() Repeating...", alarm, alarm->id);
|
||||||
alarm_update_timestamp_full (alarm, FALSE);
|
alarm_update_timestamp (alarm);
|
||||||
} else {
|
} else {
|
||||||
alarm_disable (alarm);
|
alarm_disable (alarm);
|
||||||
}
|
}
|
||||||
@@ -1785,15 +1785,15 @@ alarm_time_is_future (struct tm *tm, guint hour, guint minute, guint second)
|
|||||||
* Set time according to hour, min, sec and alarm->repeat
|
* Set time according to hour, min, sec and alarm->repeat
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
alarm_set_timestamp (Alarm *alarm, guint hour, guint minute, guint second, gboolean include_today)
|
alarm_set_timestamp (Alarm *alarm, guint hour, guint minute, guint second)
|
||||||
{
|
{
|
||||||
time_t now, new;
|
time_t now, new;
|
||||||
gint i, d, wday;
|
gint i, d, wday;
|
||||||
AlarmRepeat rep;
|
AlarmRepeat rep;
|
||||||
struct tm *tm;
|
struct tm *tm;
|
||||||
|
|
||||||
g_debug ("Alarm(%p) #%d: set_timestamp (%d, %d, %d, %d)", alarm, alarm->id,
|
g_debug ("Alarm(%p) #%d: set_timestamp (%d, %d, %d)", alarm, alarm->id,
|
||||||
hour, minute, second, include_today);
|
hour, minute, second);
|
||||||
|
|
||||||
time (&now);
|
time (&now);
|
||||||
tm = localtime (&now);
|
tm = localtime (&now);
|
||||||
@@ -1801,38 +1801,24 @@ alarm_set_timestamp (Alarm *alarm, guint hour, guint minute, guint second, gbool
|
|||||||
// Automatically detect Daylight Savings Time (DST)
|
// Automatically detect Daylight Savings Time (DST)
|
||||||
tm->tm_isdst = -1;
|
tm->tm_isdst = -1;
|
||||||
|
|
||||||
//i = (today == 6) ? 0 : today + 1;
|
|
||||||
//today--;
|
|
||||||
|
|
||||||
if (alarm->repeat == ALARM_REPEAT_NONE) {
|
if (alarm->repeat == ALARM_REPEAT_NONE) {
|
||||||
// Check if the alarm is for tomorrow
|
// Check if the alarm is for tomorrow
|
||||||
if (!alarm_time_is_future (tm, hour, minute, second)) {
|
if (!alarm_time_is_future (tm, hour, minute, second)) {
|
||||||
|
|
||||||
//if (wday < 0) {
|
g_debug("\tAlarm is for tomorrow.");
|
||||||
g_debug("\tAlarm is for tomorrow.");
|
tm->tm_mday++;
|
||||||
tm->tm_mday++;
|
|
||||||
/*} else {
|
|
||||||
// wday == tm->tm_wday
|
|
||||||
g_debug("alarm_set_time_full: Alarm is in 1 week.");
|
|
||||||
tm->tm_mday += 7;
|
|
||||||
}*/
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// REPEAT SET: Find the closest repeat day
|
// REPEAT SET: Find the closest repeat day
|
||||||
wday = -1;
|
wday = -1;
|
||||||
|
|
||||||
i = tm->tm_wday;
|
i = tm->tm_wday;
|
||||||
if (!include_today)
|
|
||||||
i++;
|
|
||||||
|
|
||||||
// Try finding a day in this week
|
// Try finding a day in this week
|
||||||
for (; i < 7; i++) {
|
for (; i < 7; i++) {
|
||||||
rep = 1 << i;
|
rep = 1 << i;
|
||||||
if (alarm->repeat & rep) {
|
if (alarm->repeat & rep) {
|
||||||
if (i == tm->tm_wday && !alarm_time_is_future (tm, hour, minute, second)) continue;
|
if (i == tm->tm_wday && !alarm_time_is_future (tm, hour, minute, second)) continue;
|
||||||
|
|
||||||
// FOUND!
|
|
||||||
//g_debug ("\tMATCH");
|
|
||||||
wday = i;
|
wday = i;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -1842,9 +1828,7 @@ alarm_set_timestamp (Alarm *alarm, guint hour, guint minute, guint second, gbool
|
|||||||
if (wday == -1) {
|
if (wday == -1) {
|
||||||
for (i = 0; i <= tm->tm_wday; i++) {
|
for (i = 0; i <= tm->tm_wday; i++) {
|
||||||
rep = 1 << i;
|
rep = 1 << i;
|
||||||
if (alarm->repeat & rep/* && alarm_time_is_future (tm, hour, minute, second)*/) {
|
if (alarm->repeat & rep) {
|
||||||
// FOUND!
|
|
||||||
//g_debug ("\tMATCH");
|
|
||||||
wday = i;
|
wday = i;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -1853,16 +1837,14 @@ alarm_set_timestamp (Alarm *alarm, guint hour, guint minute, guint second, gbool
|
|||||||
|
|
||||||
g_debug ("Closest WDAY = %d", wday);
|
g_debug ("Closest WDAY = %d", wday);
|
||||||
|
|
||||||
if (wday == tm->tm_wday && (!include_today || !alarm_time_is_future (tm, hour, minute, second)))
|
if (wday == tm->tm_wday && (!alarm_time_is_future (tm, hour, minute, second)))
|
||||||
wday = 7;
|
wday = 7;
|
||||||
|
|
||||||
|
|
||||||
// Calculate distance from now to wday
|
// Calculate distance from now to wday
|
||||||
if (wday == 7) {
|
if (wday == 7) {
|
||||||
g_debug("\tAlarm is in (forced) 1 week.");
|
g_debug("\tAlarm is in (forced) 1 week.");
|
||||||
d = 7;
|
d = 7;
|
||||||
} else {
|
} else {
|
||||||
// g_debug ("\td = tm->tm_wday(%d) - wday(%d)", tm->tm_wday, wday);
|
|
||||||
d = alarm_wday_distance (tm->tm_wday, wday);
|
d = alarm_wday_distance (tm->tm_wday, wday);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1875,11 +1857,6 @@ alarm_set_timestamp (Alarm *alarm, guint hour, guint minute, guint second, gbool
|
|||||||
tm->tm_min = minute;
|
tm->tm_min = minute;
|
||||||
tm->tm_sec = second;
|
tm->tm_sec = second;
|
||||||
|
|
||||||
// DEBUG:
|
|
||||||
char tmp[512];
|
|
||||||
strftime (tmp, sizeof (tmp), "%c", tm);
|
|
||||||
g_debug ("\tAlarm will trigger at %s", tmp);
|
|
||||||
|
|
||||||
new = mktime (tm);
|
new = mktime (tm);
|
||||||
g_debug ("\tSetting to %d", (gint) new);
|
g_debug ("\tSetting to %d", (gint) new);
|
||||||
g_object_set (alarm, "timestamp", new, NULL);
|
g_object_set (alarm, "timestamp", new, NULL);
|
||||||
@@ -1890,31 +1867,19 @@ alarm_set_timestamp (Alarm *alarm, guint hour, guint minute, guint second, gbool
|
|||||||
* hour/min/sec according to the time value.
|
* hour/min/sec according to the time value.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
alarm_update_timestamp_full (Alarm *alarm, gboolean include_today)
|
alarm_update_timestamp (Alarm *alarm)
|
||||||
{
|
{
|
||||||
if (alarm->type == ALARM_TYPE_CLOCK) {
|
if (alarm->type == ALARM_TYPE_CLOCK) {
|
||||||
struct tm *tm = alarm_get_time (alarm);
|
struct tm *tm = alarm_get_time (alarm);
|
||||||
g_debug ("Alarm(%p) #%d: update_timestamp_full: %d:%d:%d", alarm, alarm->id,
|
g_debug ("Alarm(%p) #%d: update_timestamp_full: %d:%d:%d", alarm, alarm->id,
|
||||||
tm->tm_hour, tm->tm_min, tm->tm_sec);
|
tm->tm_hour, tm->tm_min, tm->tm_sec);
|
||||||
alarm_set_timestamp (alarm, tm->tm_hour, tm->tm_min, tm->tm_sec, include_today);
|
alarm_set_timestamp (alarm, tm->tm_hour, tm->tm_min, tm->tm_sec);
|
||||||
} else {
|
} else {
|
||||||
/* ALARM_TYPE_TIMER */
|
/* ALARM_TYPE_TIMER */
|
||||||
g_object_set (alarm, "timestamp", time(NULL) + alarm->time, NULL);
|
g_object_set (alarm, "timestamp", time(NULL) + alarm->time, NULL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Update the alarm timestamp to point to the nearest future
|
|
||||||
* hour/min/sec according to the time value.
|
|
||||||
*
|
|
||||||
* Equivalent to alarm_update_timestamp_full (alarm, TRUE)
|
|
||||||
*/
|
|
||||||
void
|
|
||||||
alarm_update_timestamp (Alarm *alarm)
|
|
||||||
{
|
|
||||||
alarm_update_timestamp_full (alarm, TRUE);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Get the alarm time.
|
* Get the alarm time.
|
||||||
*/
|
*/
|
||||||
|
18
src/player.c
18
src/player.c
@@ -61,9 +61,9 @@ media_player_new (const gchar *uri, gboolean loop,
|
|||||||
gst_init (NULL, NULL);
|
gst_init (NULL, NULL);
|
||||||
|
|
||||||
/* Set up player */
|
/* Set up player */
|
||||||
player->player = gst_element_factory_make ("playbin2", "player");
|
player->player = gst_element_factory_make ("playbin", "player");
|
||||||
audiosink = gst_element_factory_make ("gconfaudiosink", "player-audiosink");
|
audiosink = gst_element_factory_make ("autoaudiosink", "player-audiosink");
|
||||||
videosink = gst_element_factory_make ("gconfvideosink", "player-videosink");
|
videosink = gst_element_factory_make ("autovideosink", "player-videosink");
|
||||||
|
|
||||||
if (!player->player || !audiosink || !videosink) {
|
if (!player->player || !audiosink || !videosink) {
|
||||||
g_critical ("Could not create player.");
|
g_critical ("Could not create player.");
|
||||||
@@ -86,6 +86,8 @@ media_player_new (const gchar *uri, gboolean loop,
|
|||||||
void
|
void
|
||||||
media_player_free (MediaPlayer *player)
|
media_player_free (MediaPlayer *player)
|
||||||
{
|
{
|
||||||
|
g_assert(player);
|
||||||
|
|
||||||
if (player->player)
|
if (player->player)
|
||||||
gst_object_unref (GST_OBJECT (player->player));
|
gst_object_unref (GST_OBJECT (player->player));
|
||||||
|
|
||||||
@@ -98,6 +100,8 @@ media_player_free (MediaPlayer *player)
|
|||||||
void
|
void
|
||||||
media_player_set_uri (MediaPlayer *player, const gchar *uri)
|
media_player_set_uri (MediaPlayer *player, const gchar *uri)
|
||||||
{
|
{
|
||||||
|
g_assert(player);
|
||||||
|
|
||||||
g_object_set (player->player, "uri", uri, NULL);
|
g_object_set (player->player, "uri", uri, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -111,6 +115,8 @@ media_player_get_uri (MediaPlayer *player)
|
|||||||
{
|
{
|
||||||
gchar *uri;
|
gchar *uri;
|
||||||
|
|
||||||
|
g_assert(player);
|
||||||
|
|
||||||
g_object_get (player->player, "uri", &uri, NULL);
|
g_object_get (player->player, "uri", &uri, NULL);
|
||||||
|
|
||||||
return uri;
|
return uri;
|
||||||
@@ -122,6 +128,8 @@ media_player_get_uri (MediaPlayer *player)
|
|||||||
void
|
void
|
||||||
media_player_set_state (MediaPlayer *player, MediaPlayerState state)
|
media_player_set_state (MediaPlayer *player, MediaPlayerState state)
|
||||||
{
|
{
|
||||||
|
g_assert(player);
|
||||||
|
|
||||||
MediaPlayerState old = player->state;
|
MediaPlayerState old = player->state;
|
||||||
|
|
||||||
player->state = state;
|
player->state = state;
|
||||||
@@ -232,6 +240,8 @@ media_player_start (MediaPlayer *player)
|
|||||||
{
|
{
|
||||||
GstBus *bus;
|
GstBus *bus;
|
||||||
|
|
||||||
|
g_assert(player);
|
||||||
|
|
||||||
// Attach bus watcher
|
// Attach bus watcher
|
||||||
bus = gst_pipeline_get_bus (GST_PIPELINE (player->player));
|
bus = gst_pipeline_get_bus (GST_PIPELINE (player->player));
|
||||||
player->watch_id = gst_bus_add_watch (bus, (GstBusFunc) media_player_bus_cb, player);
|
player->watch_id = gst_bus_add_watch (bus, (GstBusFunc) media_player_bus_cb, player);
|
||||||
@@ -247,6 +257,8 @@ media_player_start (MediaPlayer *player)
|
|||||||
void
|
void
|
||||||
media_player_stop (MediaPlayer *player)
|
media_player_stop (MediaPlayer *player)
|
||||||
{
|
{
|
||||||
|
g_assert(player);
|
||||||
|
|
||||||
if (player->watch_id) {
|
if (player->watch_id) {
|
||||||
g_source_remove (player->watch_id);
|
g_source_remove (player->watch_id);
|
||||||
|
|
||||||
|
1
src/tests/.deps/alarm.Po
Normal file
1
src/tests/.deps/alarm.Po
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# dummy
|
1
src/tests/.deps/list-entry.Po
Normal file
1
src/tests/.deps/list-entry.Po
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# dummy
|
1
src/tests/.deps/player.Po
Normal file
1
src/tests/.deps/player.Po
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# dummy
|
1
src/tests/.deps/test_alarm.Po
Normal file
1
src/tests/.deps/test_alarm.Po
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# dummy
|
1
src/tests/.deps/test_gconf_recursive.Po
Normal file
1
src/tests/.deps/test_gconf_recursive.Po
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# dummy
|
1
src/tests/.deps/test_libnotify.Po
Normal file
1
src/tests/.deps/test_libnotify.Po
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# dummy
|
1
src/tests/.deps/test_list_entry.Po
Normal file
1
src/tests/.deps/test_list_entry.Po
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# dummy
|
1
src/tests/.deps/test_player.Po
Normal file
1
src/tests/.deps/test_player.Po
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# dummy
|
1
src/tests/.deps/test_util.Po
Normal file
1
src/tests/.deps/test_util.Po
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# dummy
|
1
src/tests/.deps/util.Po
Normal file
1
src/tests/.deps/util.Po
Normal file
@@ -0,0 +1 @@
|
|||||||
|
# dummy
|
@@ -1,810 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!DOCTYPE glade-interface SYSTEM "glade-2.0.dtd">
|
|
||||||
<!--*- mode: xml -*-->
|
|
||||||
<glade-interface>
|
|
||||||
<widget class="GtkDialog" id="preferences">
|
|
||||||
<property name="width_request">290</property>
|
|
||||||
<property name="title" translatable="yes">Alarm Clock Preferences</property>
|
|
||||||
<property name="resizable">False</property>
|
|
||||||
<property name="icon_name">alarm-clock</property>
|
|
||||||
<property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
|
|
||||||
<property name="has_separator">False</property>
|
|
||||||
<child internal-child="vbox">
|
|
||||||
<widget class="GtkVBox" id="prefs-container">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkVBox" id="vbox1">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="border_width">12</property>
|
|
||||||
<property name="spacing">6</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkLabel" id="display-label">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<property name="label" translatable="yes"><b>Display</b></property>
|
|
||||||
<property name="use_markup">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkAlignment" id="display-alignment">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="left_padding">12</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkVBox" id="display-box">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkCheckButton" id="show-label">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="tooltip" translatable="yes">Show a label with info about upcoming alarms</property>
|
|
||||||
<property name="label" translatable="yes">Show alarm _label</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkAlignment" id="label-type-align">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="left_padding">12</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkVBox" id="label-type-box">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="sensitive">False</property>
|
|
||||||
<property name="spacing">2</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkRadioButton" id="time-radio">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">_Alarm time</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkRadioButton" id="remain-radio">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">_Remaining time</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
<property name="group">time-radio</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child internal-child="action_area">
|
|
||||||
<widget class="GtkHButtonBox" id="dialog-action_area1">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="layout_style">GTK_BUTTONBOX_END</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkButton" id="closebutton1">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="can_default">True</property>
|
|
||||||
<property name="label">gtk-close</property>
|
|
||||||
<property name="use_stock">True</property>
|
|
||||||
<property name="response_id">-7</property>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="pack_type">GTK_PACK_END</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<widget class="GtkDialog" id="list-alarms">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="title" translatable="yes">Alarms</property>
|
|
||||||
<property name="destroy_with_parent">True</property>
|
|
||||||
<property name="icon_name">alarm-clock</property>
|
|
||||||
<property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
|
|
||||||
<property name="has_separator">False</property>
|
|
||||||
<child internal-child="vbox">
|
|
||||||
<widget class="GtkVBox" id="dialog-vbox2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkHBox" id="list-alarms-box">
|
|
||||||
<property name="width_request">360</property>
|
|
||||||
<property name="height_request">150</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="border_width">5</property>
|
|
||||||
<property name="spacing">6</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkScrolledWindow" id="list-alarms-scroll">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
|
|
||||||
<property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property>
|
|
||||||
<property name="shadow_type">GTK_SHADOW_IN</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkTreeView" id="list-alarms-view">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
|
|
||||||
<property name="headers_visible">False</property>
|
|
||||||
<property name="enable_search">False</property>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkVButtonBox" id="vbuttonbox1">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="layout_style">GTK_BUTTONBOX_START</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkButton" id="add-button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="can_default">True</property>
|
|
||||||
<property name="label">gtk-add</property>
|
|
||||||
<property name="use_stock">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkButton" id="edit-button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="can_default">True</property>
|
|
||||||
<property name="label">gtk-edit</property>
|
|
||||||
<property name="use_stock">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkButton" id="delete-button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="can_default">True</property>
|
|
||||||
<property name="label">gtk-delete</property>
|
|
||||||
<property name="use_stock">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="pack_type">GTK_PACK_END</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child internal-child="action_area">
|
|
||||||
<widget class="GtkHButtonBox" id="dialog-action_area3">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="layout_style">GTK_BUTTONBOX_END</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkButton" id="closebutton2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="can_default">True</property>
|
|
||||||
<property name="label">gtk-close</property>
|
|
||||||
<property name="use_stock">True</property>
|
|
||||||
<property name="response_id">-7</property>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="pack_type">GTK_PACK_END</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<widget class="GtkDialog" id="edit-alarm">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
|
|
||||||
<property name="border_width">5</property>
|
|
||||||
<property name="title" translatable="yes">Edit alarm</property>
|
|
||||||
<property name="resizable">False</property>
|
|
||||||
<property name="window_position">GTK_WIN_POS_CENTER_ON_PARENT</property>
|
|
||||||
<property name="destroy_with_parent">True</property>
|
|
||||||
<property name="icon_name">alarm-clock</property>
|
|
||||||
<property name="type_hint">GDK_WINDOW_TYPE_HINT_DIALOG</property>
|
|
||||||
<property name="has_separator">False</property>
|
|
||||||
<child internal-child="vbox">
|
|
||||||
<widget class="GtkVBox" id="dialog-vbox4">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="spacing">6</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkHBox" id="hbox2">
|
|
||||||
<property name="height_request">36</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="spacing">2</property>
|
|
||||||
<property name="homogeneous">True</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkToggleButton" id="toggle-clock">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<child>
|
|
||||||
<placeholder/>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkToggleButton" id="toggle-timer">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<child>
|
|
||||||
<placeholder/>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkTable" id="table2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="n_rows">2</property>
|
|
||||||
<property name="n_columns">2</property>
|
|
||||||
<property name="column_spacing">6</property>
|
|
||||||
<property name="row_spacing">6</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkHBox" id="hbox3">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkSpinButton" id="hour-spin">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
|
|
||||||
<property name="adjustment">0 0 23 1 10 0</property>
|
|
||||||
<property name="climb_rate">1</property>
|
|
||||||
<property name="numeric">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkLabel" id="label4">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="label" translatable="yes"><span size="xx-large"><b>:</b></span></property>
|
|
||||||
<property name="use_markup">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkSpinButton" id="minute-spin">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
|
|
||||||
<property name="adjustment">0 0 59 1 10 0</property>
|
|
||||||
<property name="climb_rate">1</property>
|
|
||||||
<property name="numeric">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkLabel" id="label7">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="label" translatable="yes"><span size="xx-large"><b>:</b></span></property>
|
|
||||||
<property name="use_markup">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="position">3</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkSpinButton" id="second-spin">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
|
|
||||||
<property name="adjustment">0 0 59 1 10 0</property>
|
|
||||||
<property name="climb_rate">1</property>
|
|
||||||
<property name="numeric">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="position">4</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkLabel" id="label3">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">5</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="left_attach">1</property>
|
|
||||||
<property name="right_attach">2</property>
|
|
||||||
<property name="top_attach">1</property>
|
|
||||||
<property name="bottom_attach">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkEntry" id="label-entry">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
|
|
||||||
<property name="activates_default">True</property>
|
|
||||||
<property name="text" translatable="yes">Wake up sleepy head!</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="left_attach">1</property>
|
|
||||||
<property name="right_attach">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkLabel" id="label2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<property name="label" translatable="yes">_Time:</property>
|
|
||||||
<property name="use_markup">True</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="mnemonic_widget">hour-spin</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="top_attach">1</property>
|
|
||||||
<property name="bottom_attach">2</property>
|
|
||||||
<property name="x_options"></property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkLabel" id="label1">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<property name="label" translatable="yes">_Label:</property>
|
|
||||||
<property name="use_markup">True</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="mnemonic_widget">label-entry</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="x_options"></property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="padding">6</property>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkExpander" id="repeat-expand">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkAlignment" id="alignment1">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="left_padding">24</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkHBox" id="repeat-box">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="spacing">2</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkCheckButton" id="mon">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Mon</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkCheckButton" id="tue">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Tue</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkCheckButton" id="wed">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Wed</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkCheckButton" id="thu">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Thu</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">3</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkCheckButton" id="fri">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Fri</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">4</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkCheckButton" id="sat">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Sat</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">5</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkCheckButton" id="sun">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Sun</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">6</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkLabel" id="repeat-label">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="label" translatable="yes"><b>T_rigger alarm:</b></property>
|
|
||||||
<property name="use_markup">True</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="type">label_item</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">3</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkHBox" id="snooze-box">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="spacing">2</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkCheckButton" id="snooze-check">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Snoo_ze for:</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkSpinButton" id="snooze-spin">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK</property>
|
|
||||||
<property name="adjustment">0 0 99 1 10 0</property>
|
|
||||||
<property name="climb_rate">1</property>
|
|
||||||
<property name="numeric">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkLabel" id="label5">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<property name="label" translatable="yes">minutes</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="position">4</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkLabel" id="notification-label2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<property name="label" translatable="yes"><b>Notification</b></property>
|
|
||||||
<property name="use_markup">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">5</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkAlignment" id="notification-align2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="left_padding">12</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkVBox" id="notification-box">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="spacing">6</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkRadioButton" id="sound-radio">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Play _sound</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkAlignment" id="play-sound-align2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="left_padding">12</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkVBox" id="sound-box">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkHBox" id="play-sound-inner-box2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkComboBox" id="sound-combo">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkButton" id="sound-play">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label">gtk-media-play</property>
|
|
||||||
<property name="use_stock">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkCheckButton" id="sound-loop-check">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Repea_t sound</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkRadioButton" id="app-radio">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Start _Application</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
<property name="group">sound-radio</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkAlignment" id="app-align">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="left_padding">12</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkVBox" id="app-box">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="spacing">6</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkComboBox" id="app-combo">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkHBox" id="app-command-box">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="spacing">12</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkLabel" id="app-command-label2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="label" translatable="yes">Co_mmand:</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="mnemonic_widget">app-command-entry</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkEntry" id="app-command-entry">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="sensitive">False</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">3</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkCheckButton" id="notify-bubble-check">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label" translatable="yes">Show _notification bubble</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">4</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">6</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child internal-child="action_area">
|
|
||||||
<widget class="GtkHButtonBox" id="dialog-action_area4">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="layout_style">GTK_BUTTONBOX_END</property>
|
|
||||||
<child>
|
|
||||||
<widget class="GtkButton" id="close-button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="label">gtk-close</property>
|
|
||||||
<property name="use_stock">True</property>
|
|
||||||
<property name="response_id">0</property>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="pack_type">GTK_PACK_END</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</child>
|
|
||||||
</widget>
|
|
||||||
</glade-interface>
|
|
Reference in New Issue
Block a user