зеркало из https://github.com/mozilla/pjs.git
Added methods for visibility.
This commit is contained in:
Родитель
0c4f720518
Коммит
3d702fec3a
|
@ -87,3 +87,18 @@ nsRDFTreeColumn::SetPixelWidth(PRUint32 newWidth)
|
|||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void
|
||||
nsRDFTreeColumn::SetVisibility(PRBool visible)
|
||||
{
|
||||
mVisible = visible;
|
||||
}
|
||||
|
||||
|
||||
PRBool
|
||||
nsRDFTreeColumn::IsVisible(void) const
|
||||
{
|
||||
return mVisible;
|
||||
}
|
||||
|
||||
|
|
|
@ -27,6 +27,9 @@ public:
|
|||
nsRDFTreeColumn(const nsString& name);
|
||||
virtual ~nsRDFTreeColumn(void);
|
||||
|
||||
void SetVisibility(PRBool visible);
|
||||
PRBool IsVisible(void) const;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
// nsISupports interface
|
||||
|
||||
|
@ -49,6 +52,7 @@ private:
|
|||
PRUint32 mWidth;
|
||||
nsColumnSortState mSortState;
|
||||
double mDesiredPercentage;
|
||||
PRBool mVisible;
|
||||
|
||||
static const PRUint32 kDefaultWidth;
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче