Chromium Code Reviews| Index: remoting/host/setup/win/host_configurer_window.h |
| diff --git a/remoting/host/setup/win/host_configurer_window.h b/remoting/host/setup/win/host_configurer_window.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0cedd8a1191efd9d42dcb4bbe965dad138cd1027 |
| --- /dev/null |
| +++ b/remoting/host/setup/win/host_configurer_window.h |
| @@ -0,0 +1,65 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef REMOTING_HOST_SETUP_WIN_HOST_CONFIGURER_WINDOW_H_ |
| +#define REMOTING_HOST_SETUP_WIN_HOST_CONFIGURER_WINDOW_H_ |
| + |
| +// altbase.h must be included before atlapp.h |
| +#include <atlbase.h> |
| +#include <atlapp.h> |
| +#include <atlcrack.h> |
| +#include <atluser.h> |
| +#include <atlwin.h> |
| +#include <string> |
| + |
| +#include "base/basictypes.h" |
| +#include "base/callback.h" |
| +#include "net/url_request/url_request_context_getter.h" |
| +#include "remoting/host/setup/win/host_configurer_resource.h" |
| + |
| +namespace remoting { |
| + |
| +class HostConfigurerWindow : public ATL::CDialogImpl<HostConfigurerWindow> { |
|
alexeypa (please no reviews)
2012/10/15 18:48:55
nit: Add a comment explaining that this class is a
simonmorris
2012/10/15 21:20:14
Done.
|
| + public: |
| + enum { IDD = IDD_MAIN }; |
| + |
| + BEGIN_MSG_MAP_EX(HostConfigurerWindow) |
| + MSG_WM_INITDIALOG(OnInitDialog) |
| + MSG_WM_CLOSE(OnClose) |
| + COMMAND_ID_HANDLER_EX(IDC_START_HOST, OnStartHost) |
| + END_MSG_MAP() |
| + |
| + HostConfigurerWindow( |
|
alexeypa (please no reviews)
2012/10/15 18:48:55
nit: I suspect all methods of this class should be
simonmorris
2012/10/15 21:20:14
Done.
|
| + scoped_refptr<net::URLRequestContextGetter> url_request_context_getter, |
| + scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner, |
| + base::Closure quit); |
| + |
| + private: |
| + void OnCancel(UINT code, int id, HWND control); |
| + void OnClose(); |
| + LRESULT OnInitDialog(HWND wparam, LPARAM lparam); |
| + void OnOk(UINT code, int id, HWND control); |
| + void OnStartHost(UINT code, int id, HWND control); |
| + |
| + // Destroys the window and quits the UI message loop. |
| + void Finish(); |
| + |
| + // Sets an appropriate initial position for the dialog. |
| + void PositionWindow(); |
| + |
| + // Context needed to start the host. |
| + scoped_refptr<net::URLRequestContextGetter> url_request_context_getter_; |
| + |
| + // The UI task runner. |
| + scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner_; |
| + |
| + // A task that quits the UI message loop. |
| + base::Closure quit_; |
|
alexeypa (please no reviews)
2012/10/15 18:48:55
nit: You don't have to mention that |quit_| stop t
simonmorris
2012/10/15 21:20:14
Done.
|
| + |
| + DISALLOW_COPY_AND_ASSIGN(HostConfigurerWindow); |
| +}; |
| + |
| +} // namespace remoting |
| + |
| +#endif // REMOTING_HOST_SETUP_WIN_HOST_CONFIGURER_WINDOW_H_ |