1 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
---|
2 | /* ***** BEGIN LICENSE BLOCK *****
|
---|
3 | * Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
---|
4 | *
|
---|
5 | * The contents of this file are subject to the Mozilla Public License Version
|
---|
6 | * 1.1 (the "License"); you may not use this file except in compliance with
|
---|
7 | * the License. You may obtain a copy of the License at
|
---|
8 | * http://www.mozilla.org/MPL/
|
---|
9 | *
|
---|
10 | * Software distributed under the License is distributed on an "AS IS" basis,
|
---|
11 | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
---|
12 | * for the specific language governing rights and limitations under the
|
---|
13 | * License.
|
---|
14 | *
|
---|
15 | * The Original Code is the Netscape Portable Runtime (NSPR).
|
---|
16 | *
|
---|
17 | * The Initial Developer of the Original Code is
|
---|
18 | * Netscape Communications Corporation.
|
---|
19 | * Portions created by the Initial Developer are Copyright (C) 1998-2000
|
---|
20 | * the Initial Developer. All Rights Reserved.
|
---|
21 | *
|
---|
22 | * Contributor(s):
|
---|
23 | *
|
---|
24 | * Alternatively, the contents of this file may be used under the terms of
|
---|
25 | * either the GNU General Public License Version 2 or later (the "GPL"), or
|
---|
26 | * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
---|
27 | * in which case the provisions of the GPL or the LGPL are applicable instead
|
---|
28 | * of those above. If you wish to allow use of your version of this file only
|
---|
29 | * under the terms of either the GPL or the LGPL, and not to allow others to
|
---|
30 | * use your version of this file under the terms of the MPL, indicate your
|
---|
31 | * decision by deleting the provisions above and replace them with the notice
|
---|
32 | * and other provisions required by the GPL or the LGPL. If you do not delete
|
---|
33 | * the provisions above, a recipient may use your version of this file under
|
---|
34 | * the terms of any one of the MPL, the GPL or the LGPL.
|
---|
35 | *
|
---|
36 | * ***** END LICENSE BLOCK ***** */
|
---|
37 |
|
---|
38 | /*------------------------------------------
|
---|
39 | POPFILE.C -- Popup Editor File Functions
|
---|
40 | (c) Charles Petzold, 1992
|
---|
41 | ------------------------------------------*/
|
---|
42 |
|
---|
43 | #include <windows.h>
|
---|
44 | #include <commdlg.h>
|
---|
45 | #include <stdlib.h>
|
---|
46 |
|
---|
47 | static OPENFILENAME ofn ;
|
---|
48 |
|
---|
49 | void PopFileInitialize (HWND hwnd)
|
---|
50 | {
|
---|
51 | static char *szFilter[] = { "Text Files (*.TXT)", "*.txt",
|
---|
52 | "ASCII Files (*.ASC)", "*.asc",
|
---|
53 | "All Files (*.*)", "*.*",
|
---|
54 | "" } ;
|
---|
55 |
|
---|
56 | ofn.lStructSize = sizeof (OPENFILENAME) ;
|
---|
57 | ofn.hwndOwner = hwnd ;
|
---|
58 | ofn.hInstance = NULL ;
|
---|
59 | ofn.lpstrFilter = szFilter [0] ;
|
---|
60 | ofn.lpstrCustomFilter = NULL ;
|
---|
61 | ofn.nMaxCustFilter = 0 ;
|
---|
62 | ofn.nFilterIndex = 0 ;
|
---|
63 | ofn.lpstrFile = NULL ; // Set in Open and Close functions
|
---|
64 | ofn.nMaxFile = _MAX_PATH ;
|
---|
65 | ofn.lpstrFileTitle = NULL ; // Set in Open and Close functions
|
---|
66 | ofn.nMaxFileTitle = _MAX_FNAME + _MAX_EXT ;
|
---|
67 | ofn.lpstrInitialDir = NULL ;
|
---|
68 | ofn.lpstrTitle = NULL ;
|
---|
69 | ofn.Flags = 0 ; // Set in Open and Close functions
|
---|
70 | ofn.nFileOffset = 0 ;
|
---|
71 | ofn.nFileExtension = 0 ;
|
---|
72 | ofn.lpstrDefExt = "txt" ;
|
---|
73 | ofn.lCustData = 0L ;
|
---|
74 | ofn.lpfnHook = NULL ;
|
---|
75 | ofn.lpTemplateName = NULL ;
|
---|
76 | }
|
---|
77 |
|
---|
78 | BOOL PopFileOpenDlg (HWND hwnd, LPSTR lpstrFileName, LPSTR lpstrTitleName)
|
---|
79 | {
|
---|
80 | ofn.hwndOwner = hwnd ;
|
---|
81 | ofn.lpstrFile = lpstrFileName ;
|
---|
82 | ofn.lpstrFileTitle = lpstrTitleName ;
|
---|
83 | ofn.Flags = OFN_CREATEPROMPT ;
|
---|
84 |
|
---|
85 | return GetOpenFileName (&ofn) ;
|
---|
86 | }
|
---|
87 |
|
---|
88 | BOOL PopFileSaveDlg (HWND hwnd, LPSTR lpstrFileName, LPSTR lpstrTitleName)
|
---|
89 | {
|
---|
90 | ofn.hwndOwner = hwnd ;
|
---|
91 | ofn.lpstrFile = lpstrFileName ;
|
---|
92 | ofn.lpstrFileTitle = lpstrTitleName ;
|
---|
93 | ofn.Flags = OFN_OVERWRITEPROMPT ;
|
---|
94 |
|
---|
95 | return GetSaveFileName (&ofn) ;
|
---|
96 | }
|
---|
97 |
|
---|
98 | static long PopFileLength (int hFile)
|
---|
99 | {
|
---|
100 | long lCurrentPos = _llseek (hFile, 0L, 1) ;
|
---|
101 | long lFileLength = _llseek (hFile, 0L, 2) ;
|
---|
102 |
|
---|
103 | _llseek (hFile, lCurrentPos, 0) ;
|
---|
104 |
|
---|
105 | return lFileLength ;
|
---|
106 | }
|
---|
107 |
|
---|
108 | BOOL PopFileRead (HWND hwndEdit, LPSTR lpstrFileName)
|
---|
109 | {
|
---|
110 | long lLength ;
|
---|
111 | HANDLE hBuffer ;
|
---|
112 | int hFile ;
|
---|
113 | LPSTR lpstrBuffer ;
|
---|
114 |
|
---|
115 | if (-1 == (hFile = _lopen (lpstrFileName, OF_READ | OF_SHARE_DENY_WRITE)))
|
---|
116 | return FALSE ;
|
---|
117 |
|
---|
118 | if ((lLength = PopFileLength (hFile)) >= 32000)
|
---|
119 | {
|
---|
120 | _lclose (hFile) ;
|
---|
121 | return FALSE ;
|
---|
122 | }
|
---|
123 |
|
---|
124 | if (NULL == (hBuffer = GlobalAlloc (GHND, lLength + 1)))
|
---|
125 | {
|
---|
126 | _lclose (hFile) ;
|
---|
127 | return FALSE ;
|
---|
128 | }
|
---|
129 |
|
---|
130 | lpstrBuffer = GlobalLock (hBuffer) ;
|
---|
131 | _lread (hFile, lpstrBuffer, (WORD) lLength) ;
|
---|
132 | _lclose (hFile) ;
|
---|
133 | lpstrBuffer [(WORD) lLength] = '\0' ;
|
---|
134 |
|
---|
135 | SetWindowText (hwndEdit, lpstrBuffer) ;
|
---|
136 | GlobalUnlock (hBuffer) ;
|
---|
137 | GlobalFree (hBuffer) ;
|
---|
138 |
|
---|
139 | return TRUE ;
|
---|
140 | }
|
---|
141 |
|
---|
142 | BOOL PopFileWrite (HWND hwndEdit, LPSTR lpstrFileName)
|
---|
143 | {
|
---|
144 | HANDLE hBuffer ;
|
---|
145 | int hFile ;
|
---|
146 | LPSTR lpstrBuffer ;
|
---|
147 | WORD wLength ;
|
---|
148 |
|
---|
149 | if (-1 == (hFile = _lopen (lpstrFileName, OF_WRITE | OF_SHARE_EXCLUSIVE)))
|
---|
150 | if (-1 == (hFile = _lcreat (lpstrFileName, 0)))
|
---|
151 | return FALSE ;
|
---|
152 |
|
---|
153 | wLength = GetWindowTextLength (hwndEdit) ;
|
---|
154 | hBuffer = (HANDLE) SendMessage (hwndEdit, EM_GETHANDLE, 0, 0L) ;
|
---|
155 | lpstrBuffer = (LPSTR) LocalLock (hBuffer) ;
|
---|
156 |
|
---|
157 | if (wLength != _lwrite (hFile, lpstrBuffer, wLength))
|
---|
158 | {
|
---|
159 | _lclose (hFile) ;
|
---|
160 | return FALSE ;
|
---|
161 | }
|
---|
162 |
|
---|
163 | _lclose (hFile) ;
|
---|
164 | LocalUnlock (hBuffer) ;
|
---|
165 |
|
---|
166 | return TRUE ;
|
---|
167 | }
|
---|