#!/bin/sh # The user may have a tclsh they want to preserve ver=`grep -a awieYJFnsuILOnfsYEW ${PKG_PREFIX}/bin/tclsh 2> /dev/null \ | sed -e 's/.*\*\*//'` if [ ! -e ${PKG_PREFIX}/bin/tclsh ] || [ "$ver" != "" -a "$ver" -lt 002 ] then [ -f ${PKG_PREFIX}/bin/tclsh ] && chmod u+w ${PKG_PREFIX}/bin/tclsh mkdir -p ${PKG_PREFIX}/bin cat > ${PKG_PREFIX}/bin/tclsh <<'EOF' #!/bin/sh # Installed by ports system. id: awieYJFnsuILOnfsYEW**002 # # $FreeBSD: /tmp/pcvs/ports/chinese/tcl83/Attic/pkg-install.tclsh,v 1.1 2001-02-22 03:53:30 kevlo Exp $ # ( echo "In FreeBSD, tclsh is named with a version number. This is because" echo "different versions of tclsh are not compatible with each other and" echo "they can not all be called \"tclsh\"! You may need multiple versions" echo "installed because a given port may depend on a specific version." echo echo "On your system, tclsh is installed under at least the following names:" echo for name in $(/bin/ls $(echo $PATH | sed 's/:/ /g') 2> /dev/null | egrep '^(i?tclsh[0-9]+\.[0-9]+(\_r)?([a-z][a-z])?)|otclsh$') do echo $name done [ "$name" = "" ] && echo "No tclsh installations found, sorry." ) 1>&2 exit 1 EOF chmod 555 ${PKG_PREFIX}/bin/tclsh fi ion/'>gsoc2013-evolution
Google Summer of Code 2013 - GNOME - Archive Integration workspace
aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/demo/addressbook-widget.h
blob: 9111713da5a30e6f78a8b4c60ef420265f3d03b1 (plain) (blame)
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* 
 * demo.h
 * Copyright (C) 2000  Helix Code, Inc.
 * Author: Chris Lahey <clahey@helixcode.com>
 *
 *
 * 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.
 */

#ifndef __DEMO_H__
#define __DEMO_H__

#include "e-test-model.h"

typedef struct _View View;

typedef enum {
    VIEW_TYPE_REFLOW,
    VIEW_TYPE_TABLE
} ViewType;

typedef struct {
    GtkAllocation last_alloc;
    GnomeCanvasItem *reflow;
    GtkWidget *canvas;
    GnomeCanvasItem *rect;
    int model_changed_id;
} Reflow;

struct _View {
    ViewType type;
    ETestModel *model;
    GtkWidget *child;
    GtkWidget *frame;
    Reflow *reflow;

    GtkWidget *widget;
};

void change_type(View *view, ViewType type);
View *create_view(void);

#endif /* __DEMO_H__ */