]> git.saurik.com Git - wxWidgets.git/blame - src/stubs/clipbrd.cpp
with only a little modification could be generic
[wxWidgets.git] / src / stubs / clipbrd.cpp
CommitLineData
93cf77c0
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: clipbrd.cpp
3// Purpose: Clipboard functionality
4// Author: AUTHOR
5// Modified by:
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation
14#pragma implementation "clipbrd.h"
15#endif
16
17#include "wx/app.h"
18#include "wx/frame.h"
19#include "wx/bitmap.h"
20#include "wx/utils.h"
21#include "wx/metafile.h"
22#include "wx/clipbrd.h"
23
24#include <string.h>
25
26#if !USE_SHARED_LIBRARY
27IMPLEMENT_DYNAMIC_CLASS(wxClipboard, wxObject)
28IMPLEMENT_ABSTRACT_CLASS(wxClipboardClient, wxObject)
29#endif
30
31bool wxOpenClipboard()
32{
33 // TODO
34 return FALSE;
35}
36
37bool wxCloseClipboard()
38{
39 // TODO
40 return FALSE;
41}
42
43bool wxEmptyClipboard()
44{
45 // TODO
46 return FALSE;
47}
48
49bool wxClipboardOpen()
50{
51 // TODO
52 return FALSE;
53}
54
55bool wxIsClipboardFormatAvailable(int dataFormat)
56{
57 // TODO
58 return FALSE;
59}
60
61bool wxSetClipboardData(int dataFormat, wxObject *obj, int width, int height)
62{
63 // TODO
64 return FALSE;
65}
66
67wxObject *wxGetClipboardData(int dataFormat, long *len)
68{
69 // TODO
70 return NULL;
71}
72
73int wxEnumClipboardFormats(int dataFormat)
74{
75 // TODO
76 return 0;
77}
78
79int wxRegisterClipboardFormat(char *formatName)
80{
81 // TODO
82 return 0;
83}
84
85bool wxGetClipboardFormatName(int dataFormat, char *formatName, int maxCount)
86{
87 // TODO
88 return FALSE;
89}
90
91/*
92 * Generalized clipboard implementation by Matthew Flatt
93 */
94
95wxClipboard *wxTheClipboard = NULL;
96
97void wxInitClipboard()
98{
99 if (!wxTheClipboard)
100 wxTheClipboard = new wxClipboard;
101}
102
103wxClipboard::wxClipboard()
104{
105 clipOwner = NULL;
106 cbString = NULL;
107}
108
109wxClipboard::~wxClipboard()
110{
111 if (clipOwner)
112 clipOwner->BeingReplaced();
113 if (cbString)
114 delete[] cbString;
115}
116
117static int FormatStringToID(char *str)
118{
119 if (!strcmp(str, "TEXT"))
120 return wxDF_TEXT;
121
122 return wxRegisterClipboardFormat(str);
123}
124
125void wxClipboard::SetClipboardClient(wxClipboardClient *client, long time)
126{
127 bool got_selection;
128
129 if (clipOwner)
130 clipOwner->BeingReplaced();
131 clipOwner = client;
132 if (cbString) {
133 delete[] cbString;
134 cbString = NULL;
135 }
136
137 if (wxOpenClipboard()) {
138 char **formats, *data;
139 int i;
140 int ftype;
141 long size;
142
143 formats = clipOwner->formats.ListToArray(FALSE);
144 for (i = clipOwner->formats.Number(); i--; ) {
145 ftype = FormatStringToID(formats[i]);
146 data = clipOwner->GetData(formats[i], &size);
147 if (!wxSetClipboardData(ftype, (wxObject *)data, size, 1)) {
148 got_selection = FALSE;
149 break;
150 }
151 }
152
153 if (i < 0)
154 got_selection = wxCloseClipboard();
155 } else
156 got_selection = FALSE;
157
158 got_selection = FALSE; // Assume another process takes over
159
160 if (!got_selection) {
161 clipOwner->BeingReplaced();
162 clipOwner = NULL;
163 }
164}
165
166wxClipboardClient *wxClipboard::GetClipboardClient()
167{
168 return clipOwner;
169}
170
171void wxClipboard::SetClipboardString(char *str, long time)
172{
173 bool got_selection;
174
175 if (clipOwner) {
176 clipOwner->BeingReplaced();
177 clipOwner = NULL;
178 }
179 if (cbString)
180 delete[] cbString;
181
182 cbString = str;
183
184 if (wxOpenClipboard()) {
185 if (!wxSetClipboardData(wxDF_TEXT, (wxObject *)str))
186 got_selection = FALSE;
187 else
188 got_selection = wxCloseClipboard();
189 } else
190 got_selection = FALSE;
191
192 got_selection = FALSE; // Assume another process takes over
193
194 if (!got_selection) {
195 delete[] cbString;
196 cbString = NULL;
197 }
198}
199
200char *wxClipboard::GetClipboardString(long time)
201{
202 char *str;
203 long length;
204
205 str = GetClipboardData("TEXT", &length, time);
206 if (!str) {
207 str = new char[1];
208 *str = 0;
209 }
210
211 return str;
212}
213
214char *wxClipboard::GetClipboardData(char *format, long *length, long time)
215{
216 if (clipOwner) {
217 if (clipOwner->formats.Member(format))
218 return clipOwner->GetData(format, length);
219 else
220 return NULL;
221 } else if (cbString) {
222 if (!strcmp(format, "TEXT"))
223 return copystring(cbString);
224 else
225 return NULL;
226 } else {
227 if (wxOpenClipboard()) {
228 receivedString = (char *)wxGetClipboardData(FormatStringToID(format),
229 length);
230 wxCloseClipboard();
231 } else
232 receivedString = NULL;
233
234 return receivedString;
235 }
236}
237