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
f79fa791
Kaydet (Commit)
f79fa791
authored
May 22, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Modify these stats dialogs to have OK and Cancel pair.
Change-Id: I5707aea9965e0d288d4a0e742f5d3cccf08107eb
üst
251507d0
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
17 additions
and
214 deletions
+17
-214
SamplingDialog.cxx
sc/source/ui/StatisticsDialogs/SamplingDialog.cxx
+0
-19
StatisticsInputOutputDialog.cxx
...urce/ui/StatisticsDialogs/StatisticsInputOutputDialog.cxx
+0
-19
StatisticsTwoVariableDialog.cxx
...urce/ui/StatisticsDialogs/StatisticsTwoVariableDialog.cxx
+0
-19
SamplingDialog.hxx
sc/source/ui/inc/SamplingDialog.hxx
+0
-5
StatisticsInputOutputDialog.hxx
sc/source/ui/inc/StatisticsInputOutputDialog.hxx
+0
-4
StatisticsTwoVariableDialog.hxx
sc/source/ui/inc/StatisticsTwoVariableDialog.hxx
+1
-4
analysisofvariancedialog.ui
sc/uiconfig/scalc/ui/analysisofvariancedialog.ui
+2
-18
correlationdialog.ui
sc/uiconfig/scalc/ui/correlationdialog.ui
+2
-18
covariancedialog.ui
sc/uiconfig/scalc/ui/covariancedialog.ui
+2
-18
descriptivestatisticsdialog.ui
sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui
+2
-18
exponentialsmoothingdialog.ui
sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui
+2
-18
movingaveragedialog.ui
sc/uiconfig/scalc/ui/movingaveragedialog.ui
+2
-18
samplingdialog.ui
sc/uiconfig/scalc/ui/samplingdialog.ui
+2
-18
ttestdialog.ui
sc/uiconfig/scalc/ui/ttestdialog.ui
+2
-18
No files found.
sc/source/ui/StatisticsDialogs/SamplingDialog.cxx
Dosyayı görüntüle @
f79fa791
...
@@ -57,8 +57,6 @@ ScSamplingDialog::ScSamplingDialog(
...
@@ -57,8 +57,6 @@ ScSamplingDialog::ScSamplingDialog(
get
(
mpPeriodicMethodRadio
,
"periodic-method-radio"
);
get
(
mpPeriodicMethodRadio
,
"periodic-method-radio"
);
get
(
mpButtonOk
,
"ok"
);
get
(
mpButtonOk
,
"ok"
);
get
(
mpButtonApply
,
"apply"
);
get
(
mpButtonClose
,
"close"
);
Init
();
Init
();
GetRangeFromSelection
();
GetRangeFromSelection
();
...
@@ -67,10 +65,7 @@ ScSamplingDialog::ScSamplingDialog(
...
@@ -67,10 +65,7 @@ ScSamplingDialog::ScSamplingDialog(
void
ScSamplingDialog
::
Init
()
void
ScSamplingDialog
::
Init
()
{
{
mpButtonOk
->
SetClickHdl
(
LINK
(
this
,
ScSamplingDialog
,
OkClicked
)
);
mpButtonOk
->
SetClickHdl
(
LINK
(
this
,
ScSamplingDialog
,
OkClicked
)
);
mpButtonClose
->
SetClickHdl
(
LINK
(
this
,
ScSamplingDialog
,
CloseClicked
)
);
mpButtonApply
->
SetClickHdl
(
LINK
(
this
,
ScSamplingDialog
,
ApplyClicked
)
);
mpButtonOk
->
Enable
(
false
);
mpButtonOk
->
Enable
(
false
);
mpButtonApply
->
Enable
(
false
);
Link
aLink
=
LINK
(
this
,
ScSamplingDialog
,
GetFocusHandler
);
Link
aLink
=
LINK
(
this
,
ScSamplingDialog
,
GetFocusHandler
);
mpInputRangeEdit
->
SetGetFocusHdl
(
aLink
);
mpInputRangeEdit
->
SetGetFocusHdl
(
aLink
);
...
@@ -159,7 +154,6 @@ void ScSamplingDialog::SetReference( const ScRange& rReferenceRange, ScDocument*
...
@@ -159,7 +154,6 @@ void ScSamplingDialog::SetReference( const ScRange& rReferenceRange, ScDocument*
// Enable OK, Cancel if output range is set
// Enable OK, Cancel if output range is set
mpButtonOk
->
Enable
(
!
mpOutputRangeEdit
->
GetText
().
isEmpty
());
mpButtonOk
->
Enable
(
!
mpOutputRangeEdit
->
GetText
().
isEmpty
());
mpButtonApply
->
Enable
(
!
mpOutputRangeEdit
->
GetText
().
isEmpty
());
}
}
}
}
}
}
...
@@ -278,21 +272,8 @@ void ScSamplingDialog::PerformSampling()
...
@@ -278,21 +272,8 @@ void ScSamplingDialog::PerformSampling()
}
}
IMPL_LINK
(
ScSamplingDialog
,
OkClicked
,
PushButton
*
,
/*pButton*/
)
IMPL_LINK
(
ScSamplingDialog
,
OkClicked
,
PushButton
*
,
/*pButton*/
)
{
ApplyClicked
(
NULL
);
CloseClicked
(
NULL
);
return
0
;
}
IMPL_LINK
(
ScSamplingDialog
,
ApplyClicked
,
PushButton
*
,
/*pButton*/
)
{
{
PerformSampling
();
PerformSampling
();
return
0
;
}
IMPL_LINK
(
ScSamplingDialog
,
CloseClicked
,
PushButton
*
,
/*pButton*/
)
{
Close
();
Close
();
return
0
;
return
0
;
}
}
...
...
sc/source/ui/StatisticsDialogs/StatisticsInputOutputDialog.cxx
Dosyayı görüntüle @
f79fa791
...
@@ -78,8 +78,6 @@ ScStatisticsInputOutputDialog::ScStatisticsInputOutputDialog(
...
@@ -78,8 +78,6 @@ ScStatisticsInputOutputDialog::ScStatisticsInputOutputDialog(
mpOutputRangeButton
->
SetReferences
(
this
,
mpOutputRangeEdit
);
mpOutputRangeButton
->
SetReferences
(
this
,
mpOutputRangeEdit
);
get
(
mpButtonOk
,
"ok"
);
get
(
mpButtonOk
,
"ok"
);
get
(
mpButtonApply
,
"apply"
);
get
(
mpButtonClose
,
"close"
);
get
(
mpGroupByColumnsRadio
,
"groupedby-columns-radio"
);
get
(
mpGroupByColumnsRadio
,
"groupedby-columns-radio"
);
get
(
mpGroupByRowsRadio
,
"groupedby-rows-radio"
);
get
(
mpGroupByRowsRadio
,
"groupedby-rows-radio"
);
...
@@ -94,10 +92,7 @@ ScStatisticsInputOutputDialog::~ScStatisticsInputOutputDialog()
...
@@ -94,10 +92,7 @@ ScStatisticsInputOutputDialog::~ScStatisticsInputOutputDialog()
void
ScStatisticsInputOutputDialog
::
Init
()
void
ScStatisticsInputOutputDialog
::
Init
()
{
{
mpButtonOk
->
SetClickHdl
(
LINK
(
this
,
ScStatisticsInputOutputDialog
,
OkClicked
)
);
mpButtonOk
->
SetClickHdl
(
LINK
(
this
,
ScStatisticsInputOutputDialog
,
OkClicked
)
);
mpButtonClose
->
SetClickHdl
(
LINK
(
this
,
ScStatisticsInputOutputDialog
,
CloseClicked
)
);
mpButtonApply
->
SetClickHdl
(
LINK
(
this
,
ScStatisticsInputOutputDialog
,
ApplyClicked
)
);
mpButtonOk
->
Enable
(
false
);
mpButtonOk
->
Enable
(
false
);
mpButtonApply
->
Enable
(
false
);
Link
aLink
=
LINK
(
this
,
ScStatisticsInputOutputDialog
,
GetFocusHandler
);
Link
aLink
=
LINK
(
this
,
ScStatisticsInputOutputDialog
,
GetFocusHandler
);
mpInputRangeEdit
->
SetGetFocusHdl
(
aLink
);
mpInputRangeEdit
->
SetGetFocusHdl
(
aLink
);
...
@@ -167,27 +162,13 @@ void ScStatisticsInputOutputDialog::SetReference( const ScRange& rReferenceRange
...
@@ -167,27 +162,13 @@ void ScStatisticsInputOutputDialog::SetReference( const ScRange& rReferenceRange
// Enable OK, Cancel if output range is set
// Enable OK, Cancel if output range is set
mpButtonOk
->
Enable
(
!
mpOutputRangeEdit
->
GetText
().
isEmpty
());
mpButtonOk
->
Enable
(
!
mpOutputRangeEdit
->
GetText
().
isEmpty
());
mpButtonApply
->
Enable
(
!
mpOutputRangeEdit
->
GetText
().
isEmpty
());
}
}
}
}
}
}
IMPL_LINK
(
ScStatisticsInputOutputDialog
,
OkClicked
,
PushButton
*
,
/*pButton*/
)
IMPL_LINK
(
ScStatisticsInputOutputDialog
,
OkClicked
,
PushButton
*
,
/*pButton*/
)
{
ApplyClicked
(
NULL
);
CloseClicked
(
NULL
);
return
0
;
}
IMPL_LINK
(
ScStatisticsInputOutputDialog
,
ApplyClicked
,
PushButton
*
,
/*pButton*/
)
{
{
CalculateInputAndWriteToOutput
();
CalculateInputAndWriteToOutput
();
return
0
;
}
IMPL_LINK
(
ScStatisticsInputOutputDialog
,
CloseClicked
,
PushButton
*
,
/*pButton*/
)
{
Close
();
Close
();
return
0
;
return
0
;
}
}
...
...
sc/source/ui/StatisticsDialogs/StatisticsTwoVariableDialog.cxx
Dosyayı görüntüle @
f79fa791
...
@@ -56,8 +56,6 @@ ScStatisticsTwoVariableDialog::ScStatisticsTwoVariableDialog(
...
@@ -56,8 +56,6 @@ ScStatisticsTwoVariableDialog::ScStatisticsTwoVariableDialog(
mpOutputRangeButton
->
SetReferences
(
this
,
mpOutputRangeEdit
);
mpOutputRangeButton
->
SetReferences
(
this
,
mpOutputRangeEdit
);
get
(
mpButtonOk
,
"ok"
);
get
(
mpButtonOk
,
"ok"
);
get
(
mpButtonApply
,
"apply"
);
get
(
mpButtonClose
,
"close"
);
get
(
mpGroupByColumnsRadio
,
"groupedby-columns-radio"
);
get
(
mpGroupByColumnsRadio
,
"groupedby-columns-radio"
);
get
(
mpGroupByRowsRadio
,
"groupedby-rows-radio"
);
get
(
mpGroupByRowsRadio
,
"groupedby-rows-radio"
);
...
@@ -72,10 +70,7 @@ ScStatisticsTwoVariableDialog::~ScStatisticsTwoVariableDialog()
...
@@ -72,10 +70,7 @@ ScStatisticsTwoVariableDialog::~ScStatisticsTwoVariableDialog()
void
ScStatisticsTwoVariableDialog
::
Init
()
void
ScStatisticsTwoVariableDialog
::
Init
()
{
{
mpButtonOk
->
SetClickHdl
(
LINK
(
this
,
ScStatisticsTwoVariableDialog
,
OkClicked
)
);
mpButtonOk
->
SetClickHdl
(
LINK
(
this
,
ScStatisticsTwoVariableDialog
,
OkClicked
)
);
mpButtonClose
->
SetClickHdl
(
LINK
(
this
,
ScStatisticsTwoVariableDialog
,
CloseClicked
)
);
mpButtonApply
->
SetClickHdl
(
LINK
(
this
,
ScStatisticsTwoVariableDialog
,
ApplyClicked
)
);
mpButtonOk
->
Enable
(
false
);
mpButtonOk
->
Enable
(
false
);
mpButtonApply
->
Enable
(
false
);
Link
aLink
=
LINK
(
this
,
ScStatisticsTwoVariableDialog
,
GetFocusHandler
);
Link
aLink
=
LINK
(
this
,
ScStatisticsTwoVariableDialog
,
GetFocusHandler
);
mpVariable1RangeEdit
->
SetGetFocusHdl
(
aLink
);
mpVariable1RangeEdit
->
SetGetFocusHdl
(
aLink
);
...
@@ -175,27 +170,13 @@ void ScStatisticsTwoVariableDialog::SetReference( const ScRange& rReferenceRange
...
@@ -175,27 +170,13 @@ void ScStatisticsTwoVariableDialog::SetReference( const ScRange& rReferenceRange
// Enable OK, Cancel if output range is set
// Enable OK, Cancel if output range is set
mpButtonOk
->
Enable
(
!
mpOutputRangeEdit
->
GetText
().
isEmpty
());
mpButtonOk
->
Enable
(
!
mpOutputRangeEdit
->
GetText
().
isEmpty
());
mpButtonApply
->
Enable
(
!
mpOutputRangeEdit
->
GetText
().
isEmpty
());
}
}
}
}
}
}
IMPL_LINK
(
ScStatisticsTwoVariableDialog
,
OkClicked
,
PushButton
*
,
/*pButton*/
)
IMPL_LINK
(
ScStatisticsTwoVariableDialog
,
OkClicked
,
PushButton
*
,
/*pButton*/
)
{
ApplyClicked
(
NULL
);
CloseClicked
(
NULL
);
return
0
;
}
IMPL_LINK
(
ScStatisticsTwoVariableDialog
,
ApplyClicked
,
PushButton
*
,
/*pButton*/
)
{
{
CalculateInputAndWriteToOutput
();
CalculateInputAndWriteToOutput
();
return
0
;
}
IMPL_LINK
(
ScStatisticsTwoVariableDialog
,
CloseClicked
,
PushButton
*
,
/*pButton*/
)
{
Close
();
Close
();
return
0
;
return
0
;
}
}
...
...
sc/source/ui/inc/SamplingDialog.hxx
Dosyayı görüntüle @
f79fa791
...
@@ -48,10 +48,7 @@ private:
...
@@ -48,10 +48,7 @@ private:
RadioButton
*
mpRandomMethodRadio
;
RadioButton
*
mpRandomMethodRadio
;
RadioButton
*
mpPeriodicMethodRadio
;
RadioButton
*
mpPeriodicMethodRadio
;
PushButton
*
mpButtonApply
;
OKButton
*
mpButtonOk
;
OKButton
*
mpButtonOk
;
CloseButton
*
mpButtonClose
;
formula
::
RefEdit
*
mpActiveEdit
;
formula
::
RefEdit
*
mpActiveEdit
;
...
@@ -75,8 +72,6 @@ private:
...
@@ -75,8 +72,6 @@ private:
ScRange
PerformPeriodicSampling
(
ScDocShell
*
pDocShell
);
ScRange
PerformPeriodicSampling
(
ScDocShell
*
pDocShell
);
DECL_LINK
(
OkClicked
,
PushButton
*
);
DECL_LINK
(
OkClicked
,
PushButton
*
);
DECL_LINK
(
CloseClicked
,
PushButton
*
);
DECL_LINK
(
ApplyClicked
,
PushButton
*
);
DECL_LINK
(
GetFocusHandler
,
Control
*
);
DECL_LINK
(
GetFocusHandler
,
Control
*
);
DECL_LINK
(
LoseFocusHandler
,
void
*
);
DECL_LINK
(
LoseFocusHandler
,
void
*
);
DECL_LINK
(
SamplingSizeValueModified
,
void
*
);
DECL_LINK
(
SamplingSizeValueModified
,
void
*
);
...
...
sc/source/ui/inc/StatisticsInputOutputDialog.hxx
Dosyayı görüntüle @
f79fa791
...
@@ -69,9 +69,7 @@ protected:
...
@@ -69,9 +69,7 @@ protected:
private
:
private
:
// Widgets
// Widgets
PushButton
*
mpButtonApply
;
OKButton
*
mpButtonOk
;
OKButton
*
mpButtonOk
;
CloseButton
*
mpButtonClose
;
formula
::
RefEdit
*
mpActiveEdit
;
formula
::
RefEdit
*
mpActiveEdit
;
ScAddress
mCurrentAddress
;
ScAddress
mCurrentAddress
;
...
@@ -82,8 +80,6 @@ private:
...
@@ -82,8 +80,6 @@ private:
DECL_LINK
(
GroupByChanged
,
void
*
);
DECL_LINK
(
GroupByChanged
,
void
*
);
DECL_LINK
(
OkClicked
,
PushButton
*
);
DECL_LINK
(
OkClicked
,
PushButton
*
);
DECL_LINK
(
CloseClicked
,
PushButton
*
);
DECL_LINK
(
ApplyClicked
,
PushButton
*
);
DECL_LINK
(
GetFocusHandler
,
Control
*
);
DECL_LINK
(
GetFocusHandler
,
Control
*
);
DECL_LINK
(
LoseFocusHandler
,
void
*
);
DECL_LINK
(
LoseFocusHandler
,
void
*
);
};
};
...
...
sc/source/ui/inc/StatisticsTwoVariableDialog.hxx
Dosyayı görüntüle @
f79fa791
...
@@ -69,9 +69,8 @@ protected:
...
@@ -69,9 +69,8 @@ protected:
private
:
private
:
// Widgets
// Widgets
PushButton
*
mpButtonApply
;
OKButton
*
mpButtonOk
;
OKButton
*
mpButtonOk
;
CloseButton
*
mpButtonClose
;
RadioButton
*
mpGroupByColumnsRadio
;
RadioButton
*
mpGroupByColumnsRadio
;
RadioButton
*
mpGroupByRowsRadio
;
RadioButton
*
mpGroupByRowsRadio
;
...
@@ -84,8 +83,6 @@ private:
...
@@ -84,8 +83,6 @@ private:
DECL_LINK
(
GroupByChanged
,
void
*
);
DECL_LINK
(
GroupByChanged
,
void
*
);
DECL_LINK
(
OkClicked
,
PushButton
*
);
DECL_LINK
(
OkClicked
,
PushButton
*
);
DECL_LINK
(
CloseClicked
,
PushButton
*
);
DECL_LINK
(
ApplyClicked
,
PushButton
*
);
DECL_LINK
(
GetFocusHandler
,
Control
*
);
DECL_LINK
(
GetFocusHandler
,
Control
*
);
DECL_LINK
(
LoseFocusHandler
,
void
*
);
DECL_LINK
(
LoseFocusHandler
,
void
*
);
};
};
...
...
sc/uiconfig/scalc/ui/analysisofvariancedialog.ui
Dosyayı görüntüle @
f79fa791
...
@@ -30,22 +30,6 @@
...
@@ -30,22 +30,6 @@
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"layout_style"
>
end
</property>
<property
name=
"layout_style"
>
end
</property>
<child>
<object
class=
"GtkButton"
id=
"apply"
>
<property
name=
"label"
>
gtk-apply
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"has_default"
>
True
</property>
<property
name=
"receives_default"
>
True
</property>
<property
name=
"use_stock"
>
True
</property>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
<property
name=
"fill"
>
True
</property>
<property
name=
"position"
>
0
</property>
</packing>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"ok"
>
<object
class=
"GtkButton"
id=
"ok"
>
<property
name=
"label"
>
gtk-ok
</property>
<property
name=
"label"
>
gtk-ok
</property>
...
@@ -63,8 +47,8 @@
...
@@ -63,8 +47,8 @@
</packing>
</packing>
</child>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"c
lose
"
>
<object
class=
"GtkButton"
id=
"c
ancel
"
>
<property
name=
"label"
>
gtk-c
lose
</property>
<property
name=
"label"
>
gtk-c
ancel
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
...
...
sc/uiconfig/scalc/ui/correlationdialog.ui
Dosyayı görüntüle @
f79fa791
...
@@ -17,22 +17,6 @@
...
@@ -17,22 +17,6 @@
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"layout_style"
>
end
</property>
<property
name=
"layout_style"
>
end
</property>
<child>
<object
class=
"GtkButton"
id=
"apply"
>
<property
name=
"label"
>
gtk-apply
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"has_default"
>
True
</property>
<property
name=
"receives_default"
>
True
</property>
<property
name=
"use_stock"
>
True
</property>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
<property
name=
"fill"
>
True
</property>
<property
name=
"position"
>
0
</property>
</packing>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"ok"
>
<object
class=
"GtkButton"
id=
"ok"
>
<property
name=
"label"
>
gtk-ok
</property>
<property
name=
"label"
>
gtk-ok
</property>
...
@@ -50,8 +34,8 @@
...
@@ -50,8 +34,8 @@
</packing>
</packing>
</child>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"c
lose
"
>
<object
class=
"GtkButton"
id=
"c
ancel
"
>
<property
name=
"label"
>
gtk-c
lose
</property>
<property
name=
"label"
>
gtk-c
ancel
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
...
...
sc/uiconfig/scalc/ui/covariancedialog.ui
Dosyayı görüntüle @
f79fa791
...
@@ -17,22 +17,6 @@
...
@@ -17,22 +17,6 @@
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"layout_style"
>
end
</property>
<property
name=
"layout_style"
>
end
</property>
<child>
<object
class=
"GtkButton"
id=
"apply"
>
<property
name=
"label"
>
gtk-apply
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"has_default"
>
True
</property>
<property
name=
"receives_default"
>
True
</property>
<property
name=
"use_stock"
>
True
</property>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
<property
name=
"fill"
>
True
</property>
<property
name=
"position"
>
0
</property>
</packing>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"ok"
>
<object
class=
"GtkButton"
id=
"ok"
>
<property
name=
"label"
>
gtk-ok
</property>
<property
name=
"label"
>
gtk-ok
</property>
...
@@ -50,8 +34,8 @@
...
@@ -50,8 +34,8 @@
</packing>
</packing>
</child>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"c
lose
"
>
<object
class=
"GtkButton"
id=
"c
ancel
"
>
<property
name=
"label"
>
gtk-c
lose
</property>
<property
name=
"label"
>
gtk-c
ancel
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
...
...
sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui
Dosyayı görüntüle @
f79fa791
...
@@ -17,22 +17,6 @@
...
@@ -17,22 +17,6 @@
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"layout_style"
>
end
</property>
<property
name=
"layout_style"
>
end
</property>
<child>
<object
class=
"GtkButton"
id=
"apply"
>
<property
name=
"label"
>
gtk-apply
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"has_default"
>
True
</property>
<property
name=
"receives_default"
>
True
</property>
<property
name=
"use_stock"
>
True
</property>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
<property
name=
"fill"
>
True
</property>
<property
name=
"position"
>
0
</property>
</packing>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"ok"
>
<object
class=
"GtkButton"
id=
"ok"
>
<property
name=
"label"
>
gtk-ok
</property>
<property
name=
"label"
>
gtk-ok
</property>
...
@@ -50,8 +34,8 @@
...
@@ -50,8 +34,8 @@
</packing>
</packing>
</child>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"c
lose
"
>
<object
class=
"GtkButton"
id=
"c
ancel
"
>
<property
name=
"label"
>
gtk-c
lose
</property>
<property
name=
"label"
>
gtk-c
ancel
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
...
...
sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui
Dosyayı görüntüle @
f79fa791
...
@@ -23,22 +23,6 @@
...
@@ -23,22 +23,6 @@
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"layout_style"
>
end
</property>
<property
name=
"layout_style"
>
end
</property>
<child>
<object
class=
"GtkButton"
id=
"apply"
>
<property
name=
"label"
>
gtk-apply
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"has_default"
>
True
</property>
<property
name=
"receives_default"
>
True
</property>
<property
name=
"use_stock"
>
True
</property>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
<property
name=
"fill"
>
True
</property>
<property
name=
"position"
>
0
</property>
</packing>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"ok"
>
<object
class=
"GtkButton"
id=
"ok"
>
<property
name=
"label"
>
gtk-ok
</property>
<property
name=
"label"
>
gtk-ok
</property>
...
@@ -56,8 +40,8 @@
...
@@ -56,8 +40,8 @@
</packing>
</packing>
</child>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"c
lose
"
>
<object
class=
"GtkButton"
id=
"c
ancel
"
>
<property
name=
"label"
>
gtk-c
lose
</property>
<property
name=
"label"
>
gtk-c
ancel
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
...
...
sc/uiconfig/scalc/ui/movingaveragedialog.ui
Dosyayı görüntüle @
f79fa791
...
@@ -24,22 +24,6 @@
...
@@ -24,22 +24,6 @@
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"layout_style"
>
end
</property>
<property
name=
"layout_style"
>
end
</property>
<child>
<object
class=
"GtkButton"
id=
"apply"
>
<property
name=
"label"
>
gtk-apply
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"has_default"
>
True
</property>
<property
name=
"receives_default"
>
True
</property>
<property
name=
"use_stock"
>
True
</property>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
<property
name=
"fill"
>
True
</property>
<property
name=
"position"
>
0
</property>
</packing>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"ok"
>
<object
class=
"GtkButton"
id=
"ok"
>
<property
name=
"label"
>
gtk-ok
</property>
<property
name=
"label"
>
gtk-ok
</property>
...
@@ -57,8 +41,8 @@
...
@@ -57,8 +41,8 @@
</packing>
</packing>
</child>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"c
lose
"
>
<object
class=
"GtkButton"
id=
"c
ancel
"
>
<property
name=
"label"
>
gtk-c
lose
</property>
<property
name=
"label"
>
gtk-c
ancel
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
...
...
sc/uiconfig/scalc/ui/samplingdialog.ui
Dosyayı görüntüle @
f79fa791
...
@@ -28,22 +28,6 @@
...
@@ -28,22 +28,6 @@
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"layout_style"
>
end
</property>
<property
name=
"layout_style"
>
end
</property>
<child>
<object
class=
"GtkButton"
id=
"apply"
>
<property
name=
"label"
>
gtk-apply
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"has_default"
>
True
</property>
<property
name=
"receives_default"
>
True
</property>
<property
name=
"use_stock"
>
True
</property>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
<property
name=
"fill"
>
True
</property>
<property
name=
"position"
>
0
</property>
</packing>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"ok"
>
<object
class=
"GtkButton"
id=
"ok"
>
<property
name=
"label"
>
gtk-ok
</property>
<property
name=
"label"
>
gtk-ok
</property>
...
@@ -61,8 +45,8 @@
...
@@ -61,8 +45,8 @@
</packing>
</packing>
</child>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"c
lose
"
>
<object
class=
"GtkButton"
id=
"c
ancel
"
>
<property
name=
"label"
>
gtk-c
lose
</property>
<property
name=
"label"
>
gtk-c
ancel
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
...
...
sc/uiconfig/scalc/ui/ttestdialog.ui
Dosyayı görüntüle @
f79fa791
...
@@ -17,22 +17,6 @@
...
@@ -17,22 +17,6 @@
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<object
class=
"GtkButtonBox"
id=
"dialog-action_area1"
>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"can_focus"
>
False
</property>
<property
name=
"layout_style"
>
end
</property>
<property
name=
"layout_style"
>
end
</property>
<child>
<object
class=
"GtkButton"
id=
"apply"
>
<property
name=
"label"
>
gtk-apply
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"has_default"
>
True
</property>
<property
name=
"receives_default"
>
True
</property>
<property
name=
"use_stock"
>
True
</property>
</object>
<packing>
<property
name=
"expand"
>
False
</property>
<property
name=
"fill"
>
True
</property>
<property
name=
"position"
>
0
</property>
</packing>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"ok"
>
<object
class=
"GtkButton"
id=
"ok"
>
<property
name=
"label"
>
gtk-ok
</property>
<property
name=
"label"
>
gtk-ok
</property>
...
@@ -50,8 +34,8 @@
...
@@ -50,8 +34,8 @@
</packing>
</packing>
</child>
</child>
<child>
<child>
<object
class=
"GtkButton"
id=
"c
lose
"
>
<object
class=
"GtkButton"
id=
"c
ancel
"
>
<property
name=
"label"
>
gtk-c
lose
</property>
<property
name=
"label"
>
gtk-c
ancel
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
<property
name=
"can_default"
>
True
</property>
...
...
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