OSDN Git Service

Merge branch 'japaneseSearch' into develop
[neighbornote/NeighborNote.git] / src / cx / fbn / nevernote / signals / TagSignal.java
1 /*\r
2  * This file is part of NixNote/NeighborNote \r
3  * Copyright 2009 Randy Baumgarte\r
4  * \r
5  * This file may be licensed under the terms of of the\r
6  * GNU General Public License Version 2 (the ``GPL'').\r
7  *\r
8  * Software distributed under the License is distributed\r
9  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either\r
10  * express or implied. See the GPL for the specific language\r
11  * governing rights and limitations.\r
12  *\r
13  * You should have received a copy of the GPL along with this\r
14  * program. If not, go to http://www.gnu.org/licenses/gpl.html\r
15  * or write to the Free Software Foundation, Inc.,\r
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\r
17  *\r
18 */\r
19 \r
20 package cx.fbn.nevernote.signals;\r
21 \r
22 import java.util.List;\r
23 \r
24 import com.trolltech.qt.QSignalEmitter;\r
25 \r
26 import cx.fbn.nevernote.filters.TagCounter;\r
27 \r
28 \r
29 public class TagSignal extends QSignalEmitter {\r
30         public Signal0 listChanged = new Signal0();\r
31 //      public Signal2<String,String> changeParent = new Signal2<String, String>();\r
32         public Signal1<List<TagCounter>> refreshTagTreeCounts = new Signal1<List<TagCounter>>();\r
33         public Signal1<List<TagCounter>> countsChanged = new Signal1<List<TagCounter>>();\r
34 \r
35 }\r