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 "nsStringAPI.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"
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 */
60 aaTreeViewEntity::doGetCellText(PRInt32 row
, nsITreeColumn
*col
,
64 NS_ENSURE_TRUE(col
, NS_ERROR_INVALID_ARG
);
67 rv
= col
->GetIndex(&ci
);
68 NS_ENSURE_SUCCESS(rv
, rv
);
74 nsCOMPtr
<aaIEntity
> entity(do_QueryElementAt(mDataSet
, row
, &rv
));
75 NS_ENSURE_SUCCESS(rv
, rv
);
77 return entity
->GetTag(_retval
);
84 aaTreeViewEntity::convertSortColumnToString(nsITreeColumn
* col
, nsACString
& name
)
89 NS_ENSURE_ARG_POINTER(col
);
93 rc
= col
->GetIndex(&idx
);
94 NS_ENSURE_SUCCESS(rc
, rc
);
98 name
= NS_LITERAL_CSTRING("entity.tag");
102 return NS_ERROR_INVALID_ARG
;
109 aaTreeViewEntity::dataLoadSuccess()
111 return aaTreeView::dataLoadSuccess();