ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/VTBFileUtil2/Chooser.cxx
(Generate patch)

Comparing trunk/VTBFileUtil2/Chooser.cxx (file contents):
Revision 263 by douglas, 2003-08-16T16:09:44-07:00 vs.
Revision 271 by douglas, 2003-08-19T22:49:34-07:00

# Line 2 | Line 2
2   //
3   // Douglas Thrift
4   //
5 < // $Id: Chooser.cxx,v 1.1 2003/08/16 23:09:44 douglas Exp $
5 > // $Id: Chooser.cxx,v 1.8 2003/08/20 05:49:34 douglas Exp $
6  
7   #include "Chooser.h"
8  
9 < struct
9 > Chooser::Chooser()
10   {
11 <        bool* shortcut;
12 <        Mode* choice;
11 >        shortcut = false;
12 >        choice = none;
13 >        number = count++;
14 >        choosers.insert(pair<unsigned, Chooser*>(number, this));
15   }
14 cheese;
16  
17 < Mode Chooser::choose(HWND parent)
17 > Chooser::~Chooser()
18   {
19 <        cheese.shortcut = &shortcut;
20 <        cheese.choice = &choice;
19 >        choosers.erase(number);
20 > }
21  
22 <        DialogBox(gui.instance, MAKEINTRESOURCE(IDD_CHOICE), parent, smersh);
22 > Mode Chooser::choose(HWND parent)
23 > {
24 >        DialogBoxParam(gui.instance, MAKEINTRESOURCE(IDD_CHOICE), parent,
25 >                Chooser::window, number);
26  
27          desktop();
28  
29          return choice;
30   }
31  
32 < void Chooser::desktop(void)
33 < {
34 <        if (!shortcut) return;
31 <
32 <        MessageBox(NULL, "Desktop Shortcut", programName.c_str(),
33 <                MB_ICONINFORMATION);
34 < }
32 > unsigned Chooser::count = 0;
33 > map<unsigned, Chooser*> Chooser::choosers;
34 > map<HWND, Chooser*> Chooser::windows;
35  
36 < INT_PTR CALLBACK smersh(HWND dialog, UINT msg, WPARAM w, LPARAM l)
36 > INT_PTR CALLBACK Chooser::window(HWND dialog, UINT msg, WPARAM w, LPARAM l)
37   {
38 +        map<HWND, Chooser*>::iterator itor = windows.find(dialog);
39 +        Chooser* data = itor->second;
40 +
41          switch (msg)
42          {
43          case WM_INITDIALOG:
44                  center(dialog);
45                  SendMessage(dialog, WM_SETICON, ICON_BIG, LPARAM(gui.icon));
46                  SendMessage(dialog, WM_SETTEXT, 0, LPARAM(programName.c_str()));
47 +                {
48 +                        map<unsigned, Chooser*>::iterator itor = choosers.find(l);
49 +                        
50 +                        windows.insert(pair<HWND, Chooser*>(dialog, itor->second));
51 +                }
52                  break;
53          case WM_COMMAND:
54                  switch (LOWORD(w))
55                  {
56                  case IDC_CHOICE_DISC:
57 <                        *cheese.choice = disc;
57 >                        data->choice = disc;
58                          if (debug) cerr << "choice = disc\n";
59                          EnableWindow(GetDlgItem(dialog, IDC_CHOICE_ALWAYS), TRUE);
60                          EnableWindow(GetDlgItem(dialog, IDOK), TRUE);
61                          break;
62                  case IDC_CHOICE_SCAN:
63 <                        *cheese.choice = scan;
63 >                        data->choice = scan;
64                          if (debug) cerr << "choice = scan\n";
65                          EnableWindow(GetDlgItem(dialog, IDC_CHOICE_ALWAYS), TRUE);
66                          EnableWindow(GetDlgItem(dialog, IDOK), TRUE);
67                          break;
68                  case IDC_CHOICE_ALWAYS:
69 <                        *cheese.shortcut = !*cheese.shortcut;
70 <                        if (debug) cerr << "shortcut = " << *cheese.shortcut << "\n";
69 >                        data->shortcut = !data->shortcut;
70 >                        if (debug) cerr << "shortcut = " << data->shortcut << "\n";
71                          break;
72                  case IDCANCEL:
73 <                        *cheese.choice = none;
73 >                        data->choice = none;
74                  case IDOK:
75                          EndDialog(dialog, w);
76                          return TRUE;
# Line 74 | Line 82 | INT_PTR CALLBACK smersh(HWND dialog, UIN
82  
83          return FALSE;
84   }
85 +
86 + void Chooser::desktop(void)
87 + {
88 +        if (!shortcut || choice == none) return;
89 +
90 +        IShellLink* link;
91 +
92 +        CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
93 +                IID_IShellLink, (LPVOID*)(&link));
94 +
95 +        string name;
96 +
97 +        link->SetPath(program.c_str());
98 +        link->SetIconLocation(program.c_str(), 0);
99 +        link->SetDescription(programName.c_str());
100 +        
101 +        switch (choice)
102 +        {
103 +        case disc:
104 +                name = "Disc Browse";
105 +                link->SetArguments("-disc");
106 +                break;
107 +        case scan:
108 +                name = "Scan Utility";
109 +                link->SetArguments("-scan");
110 +                break;
111 +        }
112 +
113 +        IPersistFile* file;
114 +
115 +        link->QueryInterface(IID_IPersistFile, (LPVOID*)(&file));
116 +
117 +        char* desktop = new char[MAX_PATH];
118 +
119 +        SHGetFolderPath(NULL, CSIDL_DESKTOPDIRECTORY, NULL, SHGFP_TYPE_CURRENT,
120 +                desktop);
121 +
122 +        wstring path = toWide(string(desktop) + "\\" + name + ".lnk");
123 +
124 +        if (debug) cerr << "path = " << toAnsi(path) << "\n";
125 +
126 +        file->Save(path.c_str(), TRUE);
127 +        file->Release();
128 +        link->Release();
129 +
130 +        delete [] desktop;
131 + }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines