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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
|
/*
* Copyright (C) 2001 Philip Langdale
* Copyright (C) 2003 Christian Persch
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "FilePicker.h"
#include "GaleonUtils.h"
#include <nsCOMPtr.h>
#include <nsCOMPtr.h>
#include <nsServiceManagerUtils.h>
#include <nsComponentManagerUtils.h>
#include <nsIURI.h>
#include <nsIFileURL.h>
#include <nsILocalFile.h>
#include <nsIDOMWindow.h>
#include <nsNetCID.h>
#include <nsXPCOMCID.h>
#include "gul-string.h"
#include "prefs-strings.h"
#include "gul-gui.h"
#include "galeon-debug.h"
#include <glib/gconvert.h>
#include <gtk/gtkfilefilter.h>
#include <gtk/gtkstock.h>
#include <gtk/gtkmessagedialog.h>
#include <glib/gi18n.h>
NS_IMPL_ISUPPORTS1(GFilePicker, nsIFilePicker)
GFilePicker::GFilePicker() : mDialog (nsnull), mMode(nsIFilePicker::modeOpen)
{
LOG ("GFilePicker ctor (%p)", this);
}
GFilePicker::~GFilePicker()
{
LOG ("GFilePicker dtor (%p)", this);
if (mDialog)
{
g_object_remove_weak_pointer (G_OBJECT (mDialog), (gpointer *) &mDialog);
gtk_widget_destroy (GTK_WIDGET (mDialog));
}
}
/* void init (in nsIDOMWindowInternal parent, in wstring title, in short mode); */
NS_IMETHODIMP GFilePicker::Init(nsIDOMWindow *parent, const nsAString &title, PRInt16 mode)
{
LOG ("GFilePicker::Init");
GtkWidget *gparent = GaleonUtils::FindGtkParent (parent);
mMode = mode;
GtkFileChooserAction action;
switch (mode)
{
case nsIFilePicker::modeGetFolder:
action = GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER;
break;
case nsIFilePicker::modeOpenMultiple:
case nsIFilePicker::modeOpen:
action = GTK_FILE_CHOOSER_ACTION_OPEN;
break;
case nsIFilePicker::modeSave:
action = GTK_FILE_CHOOSER_ACTION_SAVE;
break;
default:
/* Avoid a warning */
action = GTK_FILE_CHOOSER_ACTION_SAVE;
g_assert_not_reached ();
break;
}
mDialog = gul_file_chooser_new (GulCString (title).get(),
gparent, action,
CONF_STATE_LAST_UPLOAD_DIR);
g_object_add_weak_pointer (G_OBJECT (mDialog), (gpointer *) &mDialog);
if (mode == nsIFilePicker::modeOpenMultiple)
{
gtk_file_chooser_set_select_multiple (GTK_FILE_CHOOSER (mDialog), TRUE);
}
return NS_OK;
}
/* void appendFilters (in long filterMask); */
NS_IMETHODIMP GFilePicker::AppendFilters(PRInt32 filterMask)
{
// http://lxr.mozilla.org/seamonkey/source/xpfe/components/filepicker/res/locale/en-US/filepicker.properties
// http://lxr.mozilla.org/seamonkey/source/xpfe/components/filepicker/src/nsFilePicker.js line 131 ff
// FIXME: use filters with mimetypes instead of extensions
NS_ENSURE_TRUE (mDialog, NS_ERROR_FAILURE);
LOG ("GFilePicker::AppendFilters mask=%d", filterMask);
if (filterMask & nsIFilePicker::filterAll)
{
AppendFilter (_("All files"), "*");
}
if (filterMask & nsIFilePicker::filterHTML)
{
AppendFilter (_("HTML files"), "*.html; *.htm; *.shtml; *.xhtml");
}
if (filterMask & nsIFilePicker::filterText)
{
AppendFilter (_("Text files"), "*.txt; *.text");
}
if (filterMask & nsIFilePicker::filterImages)
{
AppendFilter (_("Image files"), "*.png; *.gif; *.jpeg; *.jpg");
}
if (filterMask & nsIFilePicker::filterXML)
{
AppendFilter (_("XML files"), "*.xml");
}
if (filterMask & nsIFilePicker::filterXUL)
{
AppendFilter (_("XUL files"), "*.xul");
}
return NS_OK;
}
/* void appendFilter (in wstring title, in wstring filter); */
NS_IMETHODIMP GFilePicker::AppendFilter(const nsAString &title, const nsAString &filter)
{
NS_ENSURE_TRUE (mDialog, NS_ERROR_FAILURE);
LOG ("GFilePicker::AppendFilter ()");
return AppendFilter (GulCString (title).get(), GulCString (filter).get());
}
nsresult GFilePicker::AppendFilter (const char * title, const char * pattern)
{
NS_ENSURE_TRUE (title, NS_ERROR_FAILURE);
NS_ENSURE_TRUE (pattern, NS_ERROR_FAILURE);
char **patterns = g_strsplit (pattern, ";", -1);
GtkFileFilter *filth = gtk_file_filter_new ();
for (int i = 0; patterns[i] != NULL; i++)
{
gtk_file_filter_add_pattern (filth, patterns[i]);
}
gtk_file_filter_set_name (filth, title);
gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (mDialog), filth);
g_strfreev (patterns);
return NS_OK;
}
/* attribute wstring defaultString; */
NS_IMETHODIMP GFilePicker::GetDefaultString(nsAString &aDefaultString)
{
NS_ENSURE_TRUE (mDialog, NS_ERROR_FAILURE);
LOG ("GFilePicker::GetDefaultString");
aDefaultString = mDefaultString;
return NS_OK;
}
NS_IMETHODIMP GFilePicker::SetDefaultString(const nsAString &aDefaultString)
{
NS_ENSURE_TRUE (mDialog, NS_ERROR_FAILURE);
LOG ("GFilePicker::SetDefaultString ()");
/* Save the default string (i.e. the filename) for the open mode
* for when SetDefaultDir is called later */
mDefaultString.Assign (aDefaultString);
if (mMode == nsIFilePicker::modeSave)
{
if (!mDefaultString.Length()) return NS_ERROR_FAILURE;
/* set_current_name takes UTF-8, not a filename */
gtk_file_chooser_set_current_name
(GTK_FILE_CHOOSER (mDialog),
GulCString (mDefaultString).get());
}
return NS_OK;
}
/* attribute wstring defaultExtension; */
NS_IMETHODIMP GFilePicker::GetDefaultExtension(nsAString &aDefaultExtension)
{
LOG ("GFilePicker::GetDefaultExtension");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP GFilePicker::SetDefaultExtension(const nsAString &aDefaultExtension)
{
LOG ("GFilePicker::SetDefaultExtension()");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute long filterIndex; */
NS_IMETHODIMP GFilePicker::GetFilterIndex(PRInt32 *aFilterIndex)
{
LOG ("GFilePicker::GetFilterIndex");
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP GFilePicker::SetFilterIndex(PRInt32 aFilterIndex)
{
LOG ("GFilePicker::SetFilterIndex index=%d", aFilterIndex);
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsILocalFile displayDirectory; */
NS_IMETHODIMP GFilePicker::GetDisplayDirectory(nsILocalFile **aDisplayDirectory)
{
NS_ENSURE_TRUE (mDialog, NS_ERROR_FAILURE);
LOG ("GFilePicker::GetDisplayDirectory");
char *dir = gtk_file_chooser_get_current_folder (GTK_FILE_CHOOSER (mDialog));
if (dir != NULL)
{
nsCOMPtr<nsILocalFile> file = do_CreateInstance (NS_LOCAL_FILE_CONTRACTID);
file->InitWithNativePath (GulDependentCString (dir));
NS_IF_ADDREF (*aDisplayDirectory = file);
g_free (dir);
}
return NS_OK;
}
NS_IMETHODIMP GFilePicker::SetDisplayDirectory(nsILocalFile *aDisplayDirectory)
{
NS_ENSURE_TRUE (mDialog, NS_ERROR_FAILURE);
GulCString dir;
aDisplayDirectory->GetNativePath (dir);
LOG ("GFilePicker::SetDisplayDirectory to %s", dir.get());
if (mDefaultString.Length() && mMode != nsIFilePicker::modeSave)
{
nsEmbedCString defaultString;
/* NOTE, not UTF8, so can't use GulStrings */
NS_UTF16ToCString (mDefaultString, NS_CSTRING_ENCODING_NATIVE_FILESYSTEM,
defaultString);
char *filename = g_build_filename (dir.get(), defaultString.get(), NULL);
LOG ("Setting filename to %s", filename);
gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (mDialog), filename);
g_free (filename);
}
else
{
gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (mDialog),
dir.get());
}
return NS_OK;
}
/* readonly attribute nsILocalFile file; */
NS_IMETHODIMP GFilePicker::GetFile(nsILocalFile **aFile)
{
NS_ENSURE_TRUE (mDialog, NS_ERROR_FAILURE);
LOG ("GFilePicker::GetFile");
char *filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (mDialog));
if (filename != NULL)
{
nsCOMPtr<nsILocalFile> file = do_CreateInstance (NS_LOCAL_FILE_CONTRACTID);
file->InitWithNativePath (GulDependentCString (filename));
NS_IF_ADDREF (*aFile = file);
g_free (filename);
}
return NS_OK;
}
/* readonly attribute nsIURI/nsIFileURL fileURL; */
#ifdef HAVE_NSIFILEPICKER_NSIURI
NS_IMETHODIMP GFilePicker::GetFileURL(nsIURI **aFileURL)
#else
NS_IMETHODIMP GFilePicker::GetFileURL(nsIFileURL **aFileURL)
#endif
{
LOG ("GFilePicker::GetFileURL");
nsCOMPtr<nsILocalFile> file;
GetFile (getter_AddRefs(file));
NS_ENSURE_TRUE (file, NS_ERROR_FAILURE);
nsCOMPtr<nsIFileURL> fileURL = do_CreateInstance (NS_STANDARDURL_CONTRACTID);
fileURL->SetFile(file);
NS_IF_ADDREF(*aFileURL = fileURL);
return NS_OK;
}
/* readonly attribute nsISimpleEnumerator files; */
NS_IMETHODIMP GFilePicker::GetFiles(nsISimpleEnumerator * *aFiles)
{
// Not sure if we need to implement it at all, it's used nowhere
// in mozilla, but I guess a javascript might call it?
LOG ("GFilePicker::GetFiles");
return NS_ERROR_NOT_IMPLEMENTED;
}
/* short show (); */
NS_IMETHODIMP GFilePicker::Show(PRInt16 *_retval)
{
LOG ("GFilePicker::Show");
gtk_window_set_modal (GTK_WINDOW (mDialog), TRUE);
gtk_widget_show (GTK_WIDGET (mDialog));
int response;
char *filename = NULL;
do
{
response = gtk_dialog_run (GTK_DIALOG (mDialog));
g_free (filename);
filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (mDialog));
LOG ("GFilePicker::Show response=%d, filename=%s", response, filename);
}
while (response == GTK_RESPONSE_ACCEPT &&
mMode == nsIFilePicker::modeSave &&
!gul_gui_confirm_overwrite_file (GTK_WIDGET (mDialog), filename));
gtk_widget_hide (GTK_WIDGET (mDialog));
if (response == GTK_RESPONSE_ACCEPT && filename != NULL)
{
*_retval = nsIFilePicker::returnOK;
}
else
{
*_retval = nsIFilePicker::returnCancel;
}
g_free (filename);
return NS_OK;
}
|