aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/demo/addressbook-widget.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-08-26 14:08:06 +0800
committerChris Lahey <clahey@src.gnome.org>2000-08-26 14:08:06 +0800
commit657730b85aa426f2423dc4223b7646b13456e4cb (patch)
treef1b6e07d5d1627127e596794d02647a8e314081d /addressbook/demo/addressbook-widget.h
parentbf556f33a21a451f17e76e7133e72b350982d123 (diff)
downloadgsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar.gz
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar.bz2
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar.lz
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar.xz
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.tar.zst
gsoc2013-evolution-657730b85aa426f2423dc4223b7646b13456e4cb.zip
demo/* Removed the demo directory since it's no longer used.
2000-08-25 Christopher James Lahey <clahey@helixcode.com> * demo/* Removed the demo directory since it's no longer used. svn path=/trunk/; revision=5052
Diffstat (limited to 'addressbook/demo/addressbook-widget.h')
-rw-r--r--addressbook/demo/addressbook-widget.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/addressbook/demo/addressbook-widget.h b/addressbook/demo/addressbook-widget.h
deleted file mode 100644
index 9111713da5..0000000000
--- a/addressbook/demo/addressbook-widget.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/* -*- 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__ */