Re: [Wt-interest] [Boost-users] [ASIO] Timer question

2009-11-21 Thread Sean Chittenden
Have you asked Christian about this? -sc -- Sean Chittenden On Nov 21, 2009, at 5:24 AM, Pau Garcia i Quiles pgqui...@elpauer.org wrote: Hello, Answering myself (in a different mailing list, no less!), I'd say deadline_timer is broken. I've tested with the time_t_timer.cpp example

Re: [Wt-interest] WTimer (was: Re: an idea of accelerating a page reloading)

2009-11-18 Thread Sean Chittenden
/boost_asio/reference/deadline_timer.html -- Sean Chittenden s...@chittenden.org -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment

Re: [Wt-interest] How start an external process with system() on a unix os

2009-10-31 Thread Sean Chittenden
. Have the child manager pass a fd resource back to your Wt process (via dup(2), see Steven's for examples) and have it check the status of the fd with 0 byte, non-blocking writes to the fd. -sc -- Sean Chittenden s...@chittenden.org

Re: [Wt-interest] Database Support

2009-09-30 Thread Sean Chittenden
witty-interest@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/witty-interest -- Sean Chittenden s...@chittenden.org -- Come build with us! The BlackBerryreg; Developer Conference in SF, CA

Re: [Wt-interest] enableUpdates?

2009-09-23 Thread Sean Chittenden
/devconf___ witty-interest mailing list witty-interest@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/witty-interest -- Sean Chittenden s...@chittenden.org -- Come build with us

Re: [Wt-interest] witty connection pool equivalent

2009-07-27 Thread Sean Chittenden
-- ___ witty-interest mailing list witty-interest@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/witty-interest -- Sean Chittenden s...@chittenden.org

Re: [Wt-interest] make[1]: *** [examples/hangman/CMakeFiles/hangman.wt.dir/all] Error 2

2009-07-14 Thread Sean Chittenden
___ witty-interest mailing list witty-interest@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/witty-interest -- Sean Chittenden s...@chittenden.org -- Enter

Re: [Wt-interest] Cannot generate a safe linker

2009-07-14 Thread Sean Chittenden
/lists/listinfo/witty-interest -- Sean Chittenden s...@chittenden.org -- Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new

Re: [Wt-interest] make[1]: *** [examples/hangman/CMakeFiles/hangman.wt.dir/all] Error 2

2009-07-14 Thread Sean Chittenden
with MySQL C++ foo will have to help you from here. Digging in to MySQL's C++ API might be a good idea too. Good luck! -sc PS Props to Command Prompt, Inc. http://tinyurl.com/l2a5pa *grin* -- Sean Chittenden s...@chittenden.org

Re: [Wt-interest] Arbitrary data pointer accessible to widgets?

2009-07-10 Thread Sean Chittenden
. -sc -- Sean Chittenden s...@chittenden.org -- Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App

Re: [Wt-interest] Patch for Wt::WMenu to add horizontal separator...

2009-07-10 Thread Sean Chittenden
*foo1 = menu_-addItem(tr(nav-foo1), new Foo1Widget()); foo1-contents()-setStyleClass(hnav); WMenuItem *foo2 = menu_-addItem(tr(nav-foo2), new Foo2Widget()); foo2-contents()-setStyleClass(hnav); -sc On Jul 8, 2009, at 6:07 PM, Sean Chittenden wrote: Attached is a small patch to Wt

Re: [Wt-interest] Arbitrary data pointer accessible to widgets?

2009-07-08 Thread Sean Chittenden
or To line. -- Sean Chittenden s...@chittenden.org -- Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App

[Wt-interest] Patch for Wt::WMenu to add horizontal separator...

2009-07-08 Thread Sean Chittenden
); - new WText( , parent); + if (!includeSeparator) + new WText(itemHSeparator_, parent); } } -- Sean Chittenden s...@chittenden.org -- Enter the BlackBerry Developer Challenge This is your chance

Re: [Wt-interest] Arbitrary data pointer accessible to widgets?

2009-07-06 Thread Sean Chittenden
dynamic_castMyApp *(Wt::WApplication::instance()); } private: MyRes res_; }; void MyWidget::some_func() { MyRes r(MyApp::instance()-res()); r.foo(); } -- Sean Chittenden s...@chittenden.org -- Enter

[Wt-interest] Arbitrary data pointer accessible to widgets?

2009-07-02 Thread Sean Chittenden
this, but that feels like I'm stepping out of the Wt framework too much and am poking at Wt's internals more than I should have to. Is that really the best way for me to do this or is there something really obvious that I'm missing (entirely possible)? -sc -- Sean Chittenden s