transport: empty test for sqlite converter
[abstract.git] / view / aaTreeViewEntity.cpp
blobaed4dc4a2e0c7888d67c093d83d0f0702d07cfa6
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: */
3 /*
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"
24 #include "nsCOMPtr.h"
25 #include "nsComponentManagerUtils.h"
26 #include "nsStringAPI.h"
28 /* Unfrozen API */
29 #include "nsIArray.h"
30 #include "nsArrayUtils.h"
31 #include "nsITreeColumns.h"
32 #include "nsISupportsPrimitives.h"
34 /* Project includes */
35 #include "aaIEntity.h"
36 #include "aaISqlRequest.h"
37 #include "aaBaseLoaders.h"
38 #include "aaTreeViewEntity.h"
39 #include "aaISqlFilter.h"
40 #include "aaConditionKeys.h"
41 #include "aaIOrderCondition.h"
43 #include "aaNotify.h"
45 #define AA_ENTITY_MSG_SORT_TAG "tv.sort.entity.tag"
47 aaTreeViewEntity::aaTreeViewEntity()
49 mDataLoader = do_CreateInstance(AA_LOADENTITY_CONTRACT);
52 aaTreeViewEntity::~aaTreeViewEntity()
56 NS_IMPL_ISUPPORTS_INHERITED0(aaTreeViewEntity, aaTreeView)
58 /* Private functions */
59 nsresult
60 aaTreeViewEntity::doGetCellText(PRInt32 row, nsITreeColumn *col,
61 nsAString & _retval)
63 nsresult rv;
64 NS_ENSURE_TRUE(col, NS_ERROR_INVALID_ARG);
66 PRInt32 ci;
67 rv = col->GetIndex(&ci);
68 NS_ENSURE_SUCCESS(rv, rv);
69 if (ci > 0) {
70 _retval.Truncate();
71 return NS_OK;
74 nsCOMPtr<aaIEntity> entity(do_QueryElementAt(mDataSet, row, &rv));
75 NS_ENSURE_SUCCESS(rv, rv);
76 if (entity)
77 return entity->GetTag(_retval);
79 _retval.Truncate();
80 return NS_OK;
83 NS_IMETHODIMP
84 aaTreeViewEntity::convertSortColumnToString(nsITreeColumn* col, nsACString& name)
86 nsresult rc = NS_OK;
87 PRInt32 idx = -1;
89 NS_ENSURE_ARG_POINTER(col);
91 name.Truncate();
93 rc = col->GetIndex(&idx);
94 NS_ENSURE_SUCCESS(rc, rc);
96 switch (idx) {
97 case 0:
98 name = NS_LITERAL_CSTRING("entity.tag");
99 break;
100 default:
101 name.Truncate();
102 return NS_ERROR_INVALID_ARG;
105 return rc;
108 NS_IMETHODIMP
109 aaTreeViewEntity::dataLoadSuccess()
111 return aaTreeView::dataLoadSuccess();