File: message-window.cpp

package info (click to toggle)
higan 098-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 11,904 kB
  • ctags: 13,286
  • sloc: cpp: 108,285; ansic: 778; makefile: 32; sh: 18
file content (58 lines) | stat: -rw-r--r-- 2,509 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#if defined(Hiro_MessageWindow)

namespace hiro {

static auto MessageWindow_response(MessageWindow::Buttons buttons, UINT response) -> MessageWindow::Response {
  if(response == IDOK) return MessageWindow::Response::Ok;
  if(response == IDCANCEL) return MessageWindow::Response::Cancel;
  if(response == IDYES) return MessageWindow::Response::Yes;
  if(response == IDNO) return MessageWindow::Response::No;

  //default responses if window was closed without a button selected
  if(buttons == MessageWindow::Buttons::Ok) return MessageWindow::Response::Ok;
  if(buttons == MessageWindow::Buttons::OkCancel) return MessageWindow::Response::Cancel;
  if(buttons == MessageWindow::Buttons::YesNo) return MessageWindow::Response::No;
  if(buttons == MessageWindow::Buttons::YesNoCancel) return MessageWindow::Response::Cancel;

  throw;
}

static auto MessageWindow_buttons(MessageWindow::Buttons buttons) -> UINT {
  if(buttons == MessageWindow::Buttons::Ok) return MB_OK;
  if(buttons == MessageWindow::Buttons::OkCancel) return MB_OKCANCEL;
  if(buttons == MessageWindow::Buttons::YesNo) return MB_YESNO;
  if(buttons == MessageWindow::Buttons::YesNoCancel) return MB_YESNOCANCEL;
  throw;
}

auto pMessageWindow::error(MessageWindow::State& state) -> MessageWindow::Response {
  UINT flags = MB_ICONERROR | MessageWindow_buttons(state.buttons);
  return MessageWindow_response(state.buttons, MessageBox(
    state.parent ? state.parent->self()->hwnd : 0, utf16_t(state.text), utf16_t(state.title), flags
  ));
}

auto pMessageWindow::information(MessageWindow::State& state) -> MessageWindow::Response {
  UINT flags = MB_ICONINFORMATION | MessageWindow_buttons(state.buttons);
  return MessageWindow_response(state.buttons, MessageBox(
    state.parent ? state.parent->self()->hwnd : 0, utf16_t(state.text), utf16_t(state.title), flags
  ));
}

auto pMessageWindow::question(MessageWindow::State& state) -> MessageWindow::Response {
  UINT flags = MB_ICONQUESTION | MessageWindow_buttons(state.buttons);
  return MessageWindow_response(state.buttons, MessageBox(
    state.parent ? state.parent->self()->hwnd : 0, utf16_t(state.text), utf16_t(state.title), flags
  ));
}

auto pMessageWindow::warning(MessageWindow::State& state) -> MessageWindow::Response {
  UINT flags = MB_ICONWARNING | MessageWindow_buttons(state.buttons);
  return MessageWindow_response(state.buttons, MessageBox(
    state.parent ? state.parent->self()->hwnd : 0, utf16_t(state.text), utf16_t(state.title), flags
  ));
}

}

#endif