|
Revision 47
(checked in by pvanhoof, 1 year ago)
|
2007-11-06 Philip Van Hoof <pvanhoof@gnome.org>
- The rows of the TMutFolderView are now a bit more nice. Code reused
from the Modest project.
- The date-to-string function now takes into account today, and
displays just the time if we're trying to display a date/time of today.
|
| Line | |
|---|
| 1 |
#ifndef TMUT_SHARED_H |
|---|
| 2 |
#define TMUT_SHARED_H |
|---|
| 3 |
#include <tny-platform-factory.h> |
|---|
| 4 |
#include <tny-send-queue.h> |
|---|
| 5 |
|
|---|
| 6 |
typedef struct _TMutShellWindow TMutShellWindow; |
|---|
| 7 |
typedef struct _TMutShellWindowClass TMutShellWindowClass; |
|---|
| 8 |
typedef struct _TMutShellChild TMutShellChild; |
|---|
| 9 |
typedef struct _TMutShellChildIface TMutShellChildIface; |
|---|
| 10 |
|
|---|
| 11 |
extern TnyPlatformFactory *platfact; |
|---|
| 12 |
extern GHashTable *send_queues; |
|---|
| 13 |
|
|---|
| 14 |
gchar *_get_readable_date (time_t mtime); |
|---|
| 15 |
|
|---|
| 16 |
#endif |
|---|