protected:
video::frame_params frame_params_;
browser_widget browser_widget_;
-
- private:
- bool on_idle();
- virtual void do_late_initialisation() = 0;
};
base_window::base_window(const video::frame_params & frame_params)
add(browser_widget_);
browser_widget_.show();
-
- Glib::signal_idle().connect(
- sigc::mem_fun(this, &base_window::on_idle));
- }
-
- bool base_window::on_idle()
- {
- do_late_initialisation();
- return false; // don't call again thankyou
}
class preview_window : public base_window
const std::string & main_page_uri);
private:
- virtual void do_late_initialisation();
+ bool on_idle();
bool on_key_press(GdkEventKey *);
std::string main_page_uri_;
: base_window(frame_params),
main_page_uri_(main_page_uri)
{
+ Glib::signal_idle().connect(
+ sigc::mem_fun(this, &preview_window::on_idle));
signal_key_press_event().connect(
sigc::mem_fun(this, &preview_window::on_key_press));
}
- void preview_window::do_late_initialisation()
+ bool preview_window::on_idle()
{
browser_widget_.load_uri(main_page_uri_);
+ return false; // don't call again
}
bool preview_window::on_key_press(GdkEventKey * event)
dvd_generator::pgc_ref add_title(const std::string & uri,
video_format format);
void load_next_page();
- void do_late_initialisation();
+ bool on_idle();
void on_net_state_change(const char * uri, gint flags, guint status);
bool browser_is_busy() const
{
return pending_window_update_ || pending_req_count_;
}
- // Try to do as much processing as possible. Quit if done;
- // report and quit if an exception occurs.
- void try_process();
// Do as much processing as possible. Return a flag indicating
// whether to call again once the browser is idle.
bool process();
std::string output_dir_;
+ enum {
+ state_initial,
+ state_processing,
+ state_finished
+ } state_;
+
dvd_generator generator_;
typedef std::map<std::string, dvd_generator::pgc_ref>
resource_map_type;
bool pending_window_update_;
int pending_req_count_;
std::auto_ptr<page_state> page_state_;
-
- bool finished_;
};
conversion_window::conversion_window(
dvd_generator::mpeg_encoder encoder)
: base_window(frame_params),
output_dir_(output_dir),
+ state_(state_initial),
generator_(frame_params, encoder),
pending_window_update_(false),
- pending_req_count_(0),
- finished_(false)
+ pending_req_count_(0)
{
+ Glib::signal_idle().connect(
+ sigc::mem_fun(this, &conversion_window::on_idle));
browser_widget_.signal_net_state().connect(
sigc::mem_fun(this, &conversion_window::on_net_state_change));
bool conversion_window::is_finished() const
{
- return finished_;
+ return state_ == state_finished;
}
dvd_generator::pgc_ref conversion_window::add_menu(const std::string & uri)
browser_widget_.load_uri(uri);
}
- void conversion_window::do_late_initialisation()
- {
- // Put pointer in the top-left so that no links appear in
- // the hover state when we take a screenshot.
- warp_pointer(get_window(),
- -frame_params_.width, -frame_params_.height);
-
- load_next_page();
- }
-
void conversion_window::on_net_state_change(const char * uri,
gint flags, guint status)
{
pending_window_update_ = false;
}
-
- if (!browser_is_busy())
- try_process();
}
struct conversion_window::page_state
bool link_changing;
};
- void conversion_window::try_process()
+ bool conversion_window::on_idle()
{
- try
+ if (state_ == state_initial)
{
- if (!process())
- {
- finished_ = true;
- Gtk::Main::quit();
- }
+ // Put pointer in the top-left so that no links appear in
+ // the hover state when we take a screenshot.
+ warp_pointer(get_window(),
+ -frame_params_.width, -frame_params_.height);
+
+ load_next_page();
+
+ state_ = state_processing;
}
- catch (...)
+ else if (state_ == state_processing && !browser_is_busy())
{
- // Print context of exception.
- if (!page_queue_.empty())
- {
- std::cerr << "ERROR: While processing page <"
- << page_queue_.front() << ">:\n";
- if (page_state_.get() && !page_state_->link_target.empty())
- std::cerr << "ERROR: While processing link to <"
- << page_state_->link_target << ">:\n";
- }
-
- // Print exception message.
try
{
- throw;
- }
- catch (std::exception & e)
- {
- std::cerr << "ERROR: " << e.what() << "\n";
- }
- catch (Glib::Exception & e)
- {
- std::cerr << "ERROR: " << e.what() << "\n";
+ if (!process())
+ {
+ state_ = state_finished;
+ Gtk::Main::quit();
+ }
}
catch (...)
{
- std::cerr << "ERROR: Unknown exception\n";
- }
+ // Print context of exception.
+ if (!page_queue_.empty())
+ {
+ std::cerr << "ERROR: While processing page <"
+ << page_queue_.front() << ">:\n";
+ if (page_state_.get() && !page_state_->link_target.empty())
+ std::cerr << "ERROR: While processing link to <"
+ << page_state_->link_target << ">:\n";
+ }
- Gtk::Main::quit();
+ // Print exception message.
+ try
+ {
+ throw;
+ }
+ catch (std::exception & e)
+ {
+ std::cerr << "ERROR: " << e.what() << "\n";
+ }
+ catch (Glib::Exception & e)
+ {
+ std::cerr << "ERROR: " << e.what() << "\n";
+ }
+ catch (...)
+ {
+ std::cerr << "ERROR: Unknown exception\n";
+ }
+
+ Gtk::Main::quit();
+ }
}
+
+ // Call again if we're not done.
+ return state_ != state_finished;
}
bool conversion_window::process()