Audacity 3.2.0
UpdateNoticeDialog.h
Go to the documentation of this file.
1/*!********************************************************************
2
3 Audacity: A Digital Audio Editor
4
5 @file UpdateNoticeDialog.h
6 @brief Define a dialog to notify the user about automatic update checking.
7
8 Dmitry Vedenko
9 **********************************************************************/
10
11#pragma once
12
13#include "wxPanelWrapper.h"
14#include "wx/string.h"
15
16class HtmlWindow;
17class wxWindow;
18
21{
22 DECLARE_DYNAMIC_CLASS (AboutDialog)
23public:
24 explicit UpdateNoticeDialog (wxWindow* parent);
25
26 private:
27 void OnOk (wxCommandEvent&);
28 void OnSize(wxSizeEvent&);
29
30 DECLARE_EVENT_TABLE ()
31};
The AboutDialog shows the program version and developer credits.
Definition: AboutDialog.h:32
HtmlWindow Class.
Definition: HtmlWindow.h:37
Dialog, that notifies the users about automatic updates checking.
UpdateNoticeDialog(wxWindow *parent)
void OnOk(wxCommandEvent &)
void OnSize(wxSizeEvent &)