Revision c393c256
Added by david.sorber 8 months ago
| src/CatalogItem.cc | ||
|---|---|---|
|
|
||
|
#include "CatalogItem.h"
|
||
|
|
||
|
// Initialize static member
|
||
|
int CatalogItem::NEXT_ID(-1);
|
||
|
|
||
|
CatalogItem::CatalogItem(const std::string& key, const std::string& value)
|
||
|
: m_key(key),
|
||
|
: m_id(NEXT_ID++),
|
||
|
m_key(key),
|
||
|
m_keyLower(key),
|
||
|
m_value(value),
|
||
|
m_visible(true)
|
||
Revamp display widgets. Use a listbox on the left panel and a multiline
text box in the main right panel. Bump version to 0.2.0.