~ubuntu-branches/ubuntu/saucy/darktable/saucy

« back to all changes in this revision

Viewing changes to src/gui/camera_import_dialog.h

  • Committer: Bazaar Package Importer
  • Author(s): David Bremner
  • Date: 2011-04-14 23:42:12 UTC
  • Revision ID: james.westby@ubuntu.com-20110414234212-kuffcz5wiu18v6ra
Tags: upstream-0.8
ImportĀ upstreamĀ versionĀ 0.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    This file is part of darktable,
 
3
    copyright (c) 2010 henrik andersson.
 
4
 
 
5
    darktable is free software: you can redistribute it and/or modify
 
6
    it under the terms of the GNU General Public License as published by
 
7
    the Free Software Foundation, either version 3 of the License, or
 
8
    (at your option) any later version.
 
9
 
 
10
    darktable is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with darktable.  If not, see <http://www.gnu.org/licenses/>.
 
17
*/
 
18
 
 
19
#ifndef DT_CAMERA_IMPORT_DIALOG_H
 
20
#define DT_CAMERA_IMPORT_DIALOG_H
 
21
 
 
22
#include <glib.h>
 
23
#include <gtk/gtk.h>
 
24
#include "common/camera_control.h"
 
25
 
 
26
typedef struct  dt_camera_import_dialog_param_t
 
27
{
 
28
  dt_camera_t *camera;
 
29
  gchar *jobcode;
 
30
  gchar *basedirectory;
 
31
  gchar *subdirectory;
 
32
  gchar *filenamepattern;
 
33
  /** Filenames of selected images to import*/
 
34
  GList *result;
 
35
}
 
36
dt_camera_import_dialog_param_t;
 
37
 
 
38
/** Fires up the camera import dialog, result is a list of images paths on camera to be imported. */
 
39
void dt_camera_import_dialog_new(dt_camera_import_dialog_param_t *param);
 
40
 
 
41
#endif
 
42
 
 
43