Aegisub/aegisub/src/dialog_progress.h

61 lines
1.9 KiB
C
Raw Normal View History

// Copyright (c) 2011, Thomas Goyne <plorkyeran@aegisub.org>
2006-01-16 22:02:54 +01:00
//
// Permission to use, copy, modify, and distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
2006-01-16 22:02:54 +01:00
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/// @file dialog_progress.h
/// @see dialog_progress.cpp
/// @ingroup utility
///
2006-01-16 22:02:54 +01:00
#include <wx/dialog.h>
#include <wx/timer.h>
2006-01-16 22:02:54 +01:00
#include <libaegisub/background_runner.h>
class DialogProgressSink;
class wxButton;
class wxGauge;
class wxStaticText;
class wxTextCtrl;
/// @class DialogProgress
/// @brief Progress-bar dialog box for displaying during long operations
class DialogProgress : public wxDialog, public agi::BackgroundRunner {
friend class DialogProgressSink;
DialogProgressSink *ps;
wxStaticText *title;
2006-01-16 22:02:54 +01:00
wxStaticText *text;
wxGauge *gauge;
wxButton *cancel_button;
wxTextCtrl *log_output;
2006-01-16 22:02:54 +01:00
wxTimer pulse_timer;
2006-01-16 22:02:54 +01:00
wxString pending_log;
void OnShow(wxShowEvent&);
void OnCancel(wxCommandEvent &);
void OnIdle(wxIdleEvent&);
2006-01-16 22:02:54 +01:00
public:
/// Constructor
/// @param parent Parent window of the dialog
/// @param title Initial title of the dialog
/// @param message Initial message of the dialog
DialogProgress(wxWindow *parent, wxString const& title="", wxString const& message="");
/// BackgroundWorker implementation
2012-09-25 01:35:27 +02:00
void Run(std::function<void(agi::ProgressSink *)> task, int priority=-1);
2006-01-16 22:02:54 +01:00
};