do not mark message as read when moved to another folder with "next_unread"
[chiroptera.git] / chievents.d
blob6d322e0464667ed8a128f92d8387dc7588f300b7
1 module chievents /*is aliced*/;
3 import iv.alice;
4 import iv.egra;
7 // ////////////////////////////////////////////////////////////////////////// //
8 public __gshared int guiGroupListWidth = 140*2;
9 public __gshared int guiThreadListHeight = 250*2-100;
10 public __gshared int guiMessageTextLPad = 6;
11 public __gshared int guiMessageTextVPad = 4;
12 public __gshared int guiMessageTextInterline = 4;
13 public __gshared int guiScrollbarWidth = 8;
16 // ////////////////////////////////////////////////////////////////////////// //
17 public class UpdatingAccountEvent {
18 uint accid;
20 this (uint aid) nothrow @safe @nogc { accid = aid; }
23 public class UpdatingAccountCompleteEvent {
24 uint accid;
26 this (uint aid) nothrow @safe @nogc { accid = aid; }
29 public class UpdatingCompleteEvent {}
31 public class RecalcAllTwitsEvent {}
33 public class TagThreadsUpdatedEvent {
34 uint tagid;
36 this (uint tgid) nothrow @safe @nogc { tagid = tgid; }