1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent tw=79 ft=cpp: */
4 * Copyright (C) 2007,2008 Sergey Yanovich <ynvich@gmail.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
22 #include "xpcom-config.h"
25 #include "nsComponentManagerUtils.h"
26 #include "nsServiceManagerUtils.h"
27 #include "nsStringAPI.h"
31 #include "nsArrayUtils.h"
32 #include "nsITreeColumns.h"
33 #include "nsIStringBundle.h"
35 /* Project includes */
36 #include "aaIResource.h"
37 #include "aaISqlRequest.h"
38 #include "aaBaseLoaders.h"
39 #include "aaIOrderCondition.h"
40 #include "aaConditionKeys.h"
41 #include "aaISqlFilter.h"
42 #include "aaTreeViewResource.h"
44 aaTreeViewResource::aaTreeViewResource()
46 mDataLoader
= do_CreateInstance(AA_LOADRESOURCE_CONTRACT
);
49 aaTreeViewResource::~aaTreeViewResource()
53 NS_IMPL_ISUPPORTS_INHERITED0(aaTreeViewResource
, aaTreeView
)
55 /* Private functions */
57 aaTreeViewResource::doGetCellText(PRInt32 row
, nsITreeColumn
*col
,
62 NS_ENSURE_TRUE(col
, NS_ERROR_INVALID_ARG
);
65 rv
= col
->GetIndex(&ci
);
66 NS_ENSURE_SUCCESS(rv
, rv
);
67 NS_ENSURE_SUCCESS(ci
<= 1, NS_OK
);
69 nsCOMPtr
<aaIResource
> resource(do_QueryElementAt(mDataSet
, row
, &rv
));
70 NS_ENSURE_SUCCESS(rv
, rv
);
76 return getTypeColumnText(resource
, _retval
);
78 return resource
->GetTag(_retval
);
87 aaTreeViewResource::getTypeColumnText(aaIResource
*aResource
,
92 NS_ENSURE_SUCCESS(rv
, rv
);
95 switch (aResource
->PickType()) {
96 case aaIResource::TYPE_MONEY
:
97 key
= NS_LITERAL_STRING("resource.type.money");
99 case aaIResource::TYPE_ASSET
:
100 key
= NS_LITERAL_STRING("resource.type.asset");
106 rv
= mBundle
->GetStringFromName(key
.get(), getter_Copies(w
));
107 NS_ENSURE_SUCCESS(rv
, rv
);
114 aaTreeViewResource::ensureState()
118 nsCOMPtr
<nsIStringBundleService
> heap
= do_GetService(
119 NS_STRINGBUNDLE_CONTRACTID
, &rv
);
120 NS_ENSURE_SUCCESS(rv
, rv
);
122 rv
= heap
->CreateBundle("chrome://abstract/locale/resource.properties",
123 getter_AddRefs(mBundle
));
124 NS_ENSURE_SUCCESS(rv
, rv
);
131 aaTreeViewResource::convertSortColumnToString(nsITreeColumn
* col
, nsACString
& name
)
136 NS_ENSURE_ARG_POINTER(col
);
140 rc
= col
->GetIndex(&idx
);
141 NS_ENSURE_SUCCESS(rc
, rc
);
145 name
= NS_LITERAL_CSTRING("resource.type");
148 name
= NS_LITERAL_CSTRING("resource.tag");
152 return NS_ERROR_INVALID_ARG
;