Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
79a8567b
Kaydet (Commit)
79a8567b
authored
Ara 10, 2011
tarafından
August Sodora
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Avoid use of the preprocessor
üst
ef747a65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
10 deletions
+13
-10
bastypes.hxx
basctl/source/inc/bastypes.hxx
+13
-10
No files found.
basctl/source/inc/bastypes.hxx
Dosyayı görüntüle @
79a8567b
...
@@ -105,11 +105,14 @@ public:
...
@@ -105,11 +105,14 @@ public:
void
Sort
();
void
Sort
();
};
};
#define BASWIN_OK 0x00
enum
BasicWindowStatus
#define BASWIN_RUNNINGBASIC 0x01
{
#define BASWIN_TOBEKILLED 0x02
BASWIN_OK
=
0x00
,
#define BASWIN_SUSPENDED 0x04
BASWIN_RUNNINGBASIC
=
0x01
,
#define BASWIN_INRESCHEDULE 0x08
BASWIN_TOBEKILLED
=
0x02
,
BASWIN_SUSPENDED
=
0x04
,
BASWIN_INRESCHEDULE
=
0x08
};
class
Printer
;
class
Printer
;
class
BasicEntryDescriptor
;
class
BasicEntryDescriptor
;
...
@@ -126,7 +129,7 @@ private:
...
@@ -126,7 +129,7 @@ private:
ScrollBar
*
pShellVScrollBar
;
ScrollBar
*
pShellVScrollBar
;
DECL_LINK
(
ScrollHdl
,
ScrollBar
*
);
DECL_LINK
(
ScrollHdl
,
ScrollBar
*
);
sal_uInt8
nStatus
;
int
nStatus
;
ScriptDocument
m_aDocument
;
ScriptDocument
m_aDocument
;
::
rtl
::
OUString
m_aLibName
;
::
rtl
::
OUString
m_aLibName
;
...
@@ -173,10 +176,10 @@ public:
...
@@ -173,10 +176,10 @@ public:
virtual
void
SetReadOnly
(
sal_Bool
bReadOnly
);
virtual
void
SetReadOnly
(
sal_Bool
bReadOnly
);
virtual
sal_Bool
IsReadOnly
();
virtual
sal_Bool
IsReadOnly
();
sal_uInt8
GetStatus
()
{
return
nStatus
;
}
int
GetStatus
()
{
return
nStatus
;
}
void
SetStatus
(
sal_uInt8
n
)
{
nStatus
=
n
;
}
void
SetStatus
(
int
n
)
{
nStatus
=
n
;
}
void
AddStatus
(
sal_uInt8
n
)
{
nStatus
=
nStatus
|
n
;
}
void
AddStatus
(
int
n
)
{
nStatus
|=
n
;
}
void
ClearStatus
(
sal_uInt8
n
)
{
nStatus
=
nStatus
&
~
n
;
}
void
ClearStatus
(
int
n
)
{
nStatus
&=
~
n
;
}
virtual
Window
*
GetLayoutWindow
();
virtual
Window
*
GetLayoutWindow
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment