Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Dlang
gtkd
Commits
dffcc5ff
Unverified
Commit
dffcc5ff
authored
Jan 07, 2020
by
Mike Wey
Committed by
GitHub
Jan 07, 2020
Browse files
Merge pull request #290 from kubo39/timeout-ctor-with-duration
Add Timeout constructor overload taking a Duration
parents
ab66cf6b
6baccef0
Changes
2
Hide whitespace changes
Inline
Side-by-side
generated/gtkd/glib/Timeout.d
View file @
dffcc5ff
...
...
@@ -24,10 +24,12 @@
module
glib
.
Timeout
;
private
import
core
.
time
;
private
import
glib
.
Source
;
private
import
glib
.
c
.
functions
;
public
import
glib
.
c
.
types
;
public
import
gtkc
.
glibtypes
;
private
import
std
.
conv
;
/** */
...
...
@@ -61,6 +63,11 @@ public class Timeout
timeoutID
=
g_timeout_add_full
(
GPriority
.
DEFAULT
,
interval
,
cast
(
GSourceFunc
)&
timeoutCallback
,
cast
(
void
*)
this
,
cast
(
GDestroyNotify
)&
destroyTimeoutNotify
);
}
this
(
Duration
interval
,
bool
delegate
()
dlg
,
bool
fireNow
=
false
)
{
super
(
interval
.
total
!
"msecs"
.
to
!
uint
,
dlg
,
fireNow
);
}
/**
* Creates a new timeout cycle.
* Params:
...
...
@@ -78,6 +85,11 @@ public class Timeout
timeoutID
=
g_timeout_add_full
(
priority
,
interval
,
cast
(
GSourceFunc
)&
timeoutCallback
,
cast
(
void
*)
this
,
cast
(
GDestroyNotify
)&
destroyTimeoutNotify
);
}
this
(
Duration
interval
,
bool
delegate
()
dlg
,
GPriority
priority
,
bool
fireNow
=
false
)
{
super
(
interval
.
total
!
"msecs"
.
to
!
uint
,
dlg
,
priority
,
fireNow
);
}
/**
* Creates a new timeout cycle with the default priority, GPriority.DEFAULT.
* Params:
...
...
@@ -94,6 +106,11 @@ public class Timeout
timeoutID
=
g_timeout_add_seconds_full
(
GPriority
.
DEFAULT
,
seconds
,
cast
(
GSourceFunc
)&
timeoutCallback
,
cast
(
void
*)
this
,
cast
(
GDestroyNotify
)&
destroyTimeoutNotify
);
}
this
(
bool
delegate
()
dlg
,
Duration
seconds
,
bool
fireNow
=
false
)
{
super
(
dlg
,
seconds
.
total
!
"seconds"
.
to
!
uint
,
fireNow
);
}
/**
* Creates a new timeout cycle.
* Params:
...
...
@@ -111,6 +128,11 @@ public class Timeout
timeoutID
=
g_timeout_add_seconds_full
(
priority
,
seconds
,
cast
(
GSourceFunc
)&
timeoutCallback
,
cast
(
void
*)
this
,
cast
(
GDestroyNotify
)&
destroyTimeoutNotify
);
}
this
(
bool
delegate
()
dlg
,
Duration
seconds
,
GPriority
priority
,
bool
fireNow
=
false
)
{
super
(
dlg
,
seconds
.
total
!
"seconds"
.
to
!
uint
,
priority
,
fireNow
);
}
/** Removes the timeout from gtk */
public
void
stop
()
{
...
...
@@ -247,7 +269,7 @@ public class Timeout
* context. You can do these steps manually if you need greater control or to
* use a custom main context.
*
* The interval given
is
in terms of monotonic time, not wall clock time.
* The interval given in terms of monotonic time, not wall clock time.
* See g_get_monotonic_time().
*
* Params:
...
...
@@ -373,14 +395,14 @@ public class Timeout
*/
public
static
Source
sourceNew
(
uint
interval
)
{
auto
p
=
g_timeout_source_new
(
interval
);
auto
__
p
=
g_timeout_source_new
(
interval
);
if
(
p
is
null
)
if
(
__
p
is
null
)
{
return
null
;
}
return
new
Source
(
cast
(
GSource
*)
p
,
true
);
return
new
Source
(
cast
(
GSource
*)
__
p
,
true
);
}
/**
...
...
@@ -393,7 +415,7 @@ public class Timeout
* The scheduling granularity/accuracy of this timeout source will be
* in seconds.
*
* The interval given
is
in terms of monotonic time, not wall clock time.
* The interval given in terms of monotonic time, not wall clock time.
* See g_get_monotonic_time().
*
* Params:
...
...
@@ -405,13 +427,13 @@ public class Timeout
*/
public
static
Source
sourceNewSeconds
(
uint
interval
)
{
auto
p
=
g_timeout_source_new_seconds
(
interval
);
auto
__
p
=
g_timeout_source_new_seconds
(
interval
);
if
(
p
is
null
)
if
(
__
p
is
null
)
{
return
null
;
}
return
new
Source
(
cast
(
GSource
*)
p
,
true
);
return
new
Source
(
cast
(
GSource
*)
__
p
,
true
);
}
}
src/APILookupGLib.txt
View file @
dffcc5ff
...
...
@@ -1305,6 +1305,8 @@ noCode: new
struct: Timeout
class: Timeout
cType:
import: core.time
import: std.conv
code: start
/** Holds all idle delegates */
private bool delegate()[] timeoutListeners;
...
...
@@ -1334,6 +1336,11 @@ code: start
timeoutID = g_timeout_add_full(GPriority.DEFAULT, interval, cast(GSourceFunc)&timeoutCallback, cast(void*)this, cast(GDestroyNotify)&destroyTimeoutNotify);
}
this(Duration interval, bool delegate() dlg, bool fireNow=false)
{
super(interval.total!"msecs".to!uint, dlg, fireNow);
}
/**
* Creates a new timeout cycle.
* Params:
...
...
@@ -1351,6 +1358,11 @@ code: start
timeoutID = g_timeout_add_full(priority, interval, cast(GSourceFunc)&timeoutCallback, cast(void*)this, cast(GDestroyNotify)&destroyTimeoutNotify);
}
this(Duration interval, bool delegate() dlg, GPriority priority, bool fireNow=false)
{
super(interval.total!"msecs".to!uint, dlg, priority, fireNow);
}
/**
* Creates a new timeout cycle with the default priority, GPriority.DEFAULT.
* Params:
...
...
@@ -1367,6 +1379,11 @@ code: start
timeoutID = g_timeout_add_seconds_full(GPriority.DEFAULT, seconds, cast(GSourceFunc)&timeoutCallback, cast(void*)this, cast(GDestroyNotify)&destroyTimeoutNotify);
}
this(bool delegate() dlg, Duration seconds, bool fireNow=false)
{
super(dlg, seconds.total!"seconds".to!uint, fireNow);
}
/**
* Creates a new timeout cycle.
* Params:
...
...
@@ -1384,6 +1401,11 @@ code: start
timeoutID = g_timeout_add_seconds_full(priority, seconds, cast(GSourceFunc)&timeoutCallback, cast(void*)this, cast(GDestroyNotify)&destroyTimeoutNotify);
}
this(bool delegate() dlg, Duration seconds, GPriority priority, bool fireNow=false)
{
super(dlg, seconds.total!"seconds".to!uint, priority, fireNow);
}
/** Removes the timeout from gtk */
public void stop()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment