2010-10-20 08:19:24 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
2012-05-21 04:12:37 -07:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-10-20 08:19:24 -07:00
|
|
|
#ifndef NSFILEPICKERPROXY_H
|
|
|
|
#define NSFILEPICKERPROXY_H
|
|
|
|
|
|
|
|
#include "nsBaseFilePicker.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsCOMArray.h"
|
|
|
|
|
|
|
|
class nsIWidget;
|
2012-06-05 19:08:30 -07:00
|
|
|
class nsIFile;
|
2010-10-20 08:19:24 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
This class creates a proxy file picker to be used in content processes.
|
|
|
|
The file picker just collects the initialization data and when Show() is
|
|
|
|
called, remotes everything to the chrome process which in turn can show a
|
|
|
|
platform specific file picker.
|
|
|
|
*/
|
|
|
|
class nsFilePickerProxy : public nsBaseFilePicker
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsFilePickerProxy();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIFilePicker (less what's in nsBaseFilePicker)
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHODIMP Init(nsIDOMWindow* parent, const nsAString& title, int16_t mode);
|
2010-10-20 08:19:24 -07:00
|
|
|
NS_IMETHODIMP AppendFilter(const nsAString& aTitle, const nsAString& aFilter);
|
|
|
|
NS_IMETHODIMP GetDefaultString(nsAString& aDefaultString);
|
|
|
|
NS_IMETHODIMP SetDefaultString(const nsAString& aDefaultString);
|
|
|
|
NS_IMETHODIMP GetDefaultExtension(nsAString& aDefaultExtension);
|
|
|
|
NS_IMETHODIMP SetDefaultExtension(const nsAString& aDefaultExtension);
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHODIMP GetFilterIndex(int32_t* aFilterIndex);
|
|
|
|
NS_IMETHODIMP SetFilterIndex(int32_t aFilterIndex);
|
2012-06-05 19:08:30 -07:00
|
|
|
NS_IMETHODIMP GetFile(nsIFile** aFile);
|
2010-10-20 08:19:24 -07:00
|
|
|
NS_IMETHODIMP GetFileURL(nsIURI** aFileURL);
|
|
|
|
NS_IMETHODIMP GetFiles(nsISimpleEnumerator** aFiles);
|
2012-08-22 08:56:38 -07:00
|
|
|
NS_IMETHODIMP Show(int16_t* aReturn);
|
2010-10-20 08:19:24 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
~nsFilePickerProxy();
|
|
|
|
void InitNative(nsIWidget*, const nsAString&, short int);
|
|
|
|
|
2012-06-05 19:08:30 -07:00
|
|
|
nsCOMArray<nsIFile> mFiles;
|
2010-10-20 08:19:24 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
int16_t mMode;
|
|
|
|
int16_t mSelectedType;
|
2010-10-20 08:19:24 -07:00
|
|
|
nsString mFile;
|
|
|
|
nsString mTitle;
|
|
|
|
nsString mDefault;
|
|
|
|
nsString mDefaultExtension;
|
|
|
|
|
2010-11-08 18:49:00 -08:00
|
|
|
InfallibleTArray<nsString> mFilters;
|
|
|
|
InfallibleTArray<nsString> mFilterNames;
|
2010-10-20 08:19:24 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NSFILEPICKERPROXY_H
|