~jeremywootten/pantheon-files/fix-1658417-long-name-in-grid-view

« back to all changes in this revision

Viewing changes to src/marlin-view-window.h

  • Committer: Jeremy Wootten
  • Date: 2017-02-04 13:48:29 UTC
  • mfrom: (2460.1.10 pantheon-files)
  • Revision ID: jeremy@elementaryos.org-20170204134829-2npkf7kaarm37vvs
Merge trunk to r2470

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2
 
/*
3
 
 * Copyright (C) 2010 ammonkey
4
 
 *
5
 
 * This library is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU Lesser General Public License
7
 
 * version 3.0 as published by the Free Software Foundation.
8
 
 *
9
 
 * This library is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
 * GNU Lesser General Public License version 3.0 for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU Lesser General Public
15
 
 * License along with this library. If not, see
16
 
 * <http://www.gnu.org/licenses/>.
17
 
 *
18
 
 * Author: ammonkey <am.monkeyd@gmail.com>
19
 
 */
20
 
 
21
 
#ifndef MARLIN_VIEW_WINDOW_H
22
 
#define MARLIN_VIEW_WINDOW_H
23
 
 
24
 
#define MARLIN_TYPE_OPEN_FLAG (marlin_open_flag_get_type ())
25
 
 
26
 
typedef enum
27
 
{
28
 
    MARLIN_OPEN_FLAG_DEFAULT,
29
 
    MARLIN_OPEN_FLAG_NEW_ROOT,
30
 
    MARLIN_OPEN_FLAG_NEW_TAB,
31
 
    MARLIN_OPEN_FLAG_NEW_WINDOW
32
 
} MarlinOpenFlag;
33
 
 
34
 
GType           marlin_open_flag_get_type     (void) G_GNUC_CONST;
35
 
 
36
 
#define MARLIN_TYPE_VIEW_MODE (marlin_view_mode_get_type ())
37
 
 
38
 
typedef enum
39
 
{
40
 
    MARLIN_VIEW_MODE_ICON,
41
 
    MARLIN_VIEW_MODE_LIST,
42
 
    MARLIN_VIEW_MODE_MILLER_COLUMNS,
43
 
    MARLIN_VIEW_MODE_CURRENT,
44
 
    MARLIN_VIEW_MODE_PREFERRED,
45
 
    MARLIN_VIEW_MODE_INVALID,
46
 
} MarlinViewMode;
47
 
 
48
 
GType           marlin_view_mode_get_type     (void) G_GNUC_CONST;
49
 
#endif /* MARLIN_VIEW_WINDOW_H */