2010-10-20 15:19:24 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
2012-05-21 11:12:37 +00: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 15:19:24 +00: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-06 02:08:30 +00:00
|
|
|
class nsIFile;
|
2010-10-20 15:19:24 +00: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 15:56:38 +00:00
|
|
|
NS_IMETHODIMP Init(nsIDOMWindow* parent, const nsAString& title, int16_t mode);
|
2010-10-20 15:19:24 +00: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 15:56:38 +00:00
|
|
|
NS_IMETHODIMP GetFilterIndex(int32_t* aFilterIndex);
|
|
|
|
NS_IMETHODIMP SetFilterIndex(int32_t aFilterIndex);
|
2012-06-06 02:08:30 +00:00
|
|
|
NS_IMETHODIMP GetFile(nsIFile** aFile);
|
2010-10-20 15:19:24 +00:00
|
|
|
NS_IMETHODIMP GetFileURL(nsIURI** aFileURL);
|
|
|
|
NS_IMETHODIMP GetFiles(nsISimpleEnumerator** aFiles);
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHODIMP Show(int16_t* aReturn);
|
2010-10-20 15:19:24 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
~nsFilePickerProxy();
|
2013-07-22 09:12:32 +00:00
|
|
|
void InitNative(nsIWidget*, const nsAString&);
|
2010-10-20 15:19:24 +00:00
|
|
|
|
2012-06-06 02:08:30 +00:00
|
|
|
nsCOMArray<nsIFile> mFiles;
|
2010-10-20 15:19:24 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int16_t mSelectedType;
|
2010-10-20 15:19:24 +00:00
|
|
|
nsString mFile;
|
|
|
|
nsString mTitle;
|
|
|
|
nsString mDefault;
|
|
|
|
nsString mDefaultExtension;
|
|
|
|
|
2010-11-09 02:49:00 +00:00
|
|
|
InfallibleTArray<nsString> mFilters;
|
|
|
|
InfallibleTArray<nsString> mFilterNames;
|
2010-10-20 15:19:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NSFILEPICKERPROXY_H
|