Symbol: fEditor
src/apps/debugger/user_interface/gui/utility_windows/VariableEditWindow.cpp
103
fEditor->GetView()->MakeFocus(true);
src/apps/debugger/user_interface/gui/utility_windows/VariableEditWindow.cpp
118
fEditor->GetView()->RemoveSelf();
src/apps/debugger/user_interface/gui/utility_windows/VariableEditWindow.cpp
38
fEditor->AcquireReference();
src/apps/debugger/user_interface/gui/utility_windows/VariableEditWindow.cpp
39
fEditor->AddListener(this);
src/apps/debugger/user_interface/gui/utility_windows/VariableEditWindow.cpp
50
fEditor->RemoveListener(this);
src/apps/debugger/user_interface/gui/utility_windows/VariableEditWindow.cpp
51
fEditor->ReleaseReference();
src/apps/debugger/user_interface/gui/utility_windows/VariableEditWindow.cpp
90
.Add(fEditor->GetView())
src/apps/debugger/user_interface/gui/utility_windows/VariableEditWindow.h
56
TableCellValueEditor* fEditor;
src/apps/diskprobe/DataEditor.cpp
151
fEditor(editor)
src/apps/diskprobe/DataEditor.cpp
162
if (fCouldRedo != fEditor.CanRedo())
src/apps/diskprobe/DataEditor.cpp
163
update.AddBool("can_redo", fEditor.CanRedo());
src/apps/diskprobe/DataEditor.cpp
164
if (fCouldUndo != fEditor.CanUndo())
src/apps/diskprobe/DataEditor.cpp
165
update.AddBool("can_undo", fEditor.CanUndo());
src/apps/diskprobe/DataEditor.cpp
166
if (fWasModified != fEditor.IsModified())
src/apps/diskprobe/DataEditor.cpp
167
update.AddBool("modified", fEditor.IsModified());
src/apps/diskprobe/DataEditor.cpp
171
fEditor.SendNotices(kMsgDataEditorStateChange, &update);
src/apps/diskprobe/DataEditor.cpp
42
DataEditor &fEditor;
src/apps/diskprobe/DataView.cpp
110
if (fEditor.Lock()) {
src/apps/diskprobe/DataView.cpp
111
fDataSize = fEditor.ViewSize();
src/apps/diskprobe/DataView.cpp
112
fOffset = fEditor.ViewOffset();
src/apps/diskprobe/DataView.cpp
113
fEditor.Unlock();
src/apps/diskprobe/DataView.cpp
1324
fEditor.Replace(fOffset + fStart, &c, 1);
src/apps/diskprobe/DataView.cpp
1326
fEditor.Replace(fOffset + fStart, (const uint8 *)"", 1);
src/apps/diskprobe/DataView.cpp
133
fEditor.StopWatching(this);
src/apps/diskprobe/DataView.cpp
1353
if (fEditor.Replace(fOffset + fStart, &c, 1) == B_OK
src/apps/diskprobe/DataView.cpp
1357
if (fEditor.Replace(fOffset + fStart, (const uint8 *)bytes,
src/apps/diskprobe/DataView.cpp
140
fEditor.StartWatching(this);
src/apps/diskprobe/DataView.cpp
157
BAutolock locker(fEditor);
src/apps/diskprobe/DataView.cpp
159
fFileSize = fEditor.FileSize();
src/apps/diskprobe/DataView.cpp
186
if (fEditor.GetViewBuffer(&data) == B_OK)
src/apps/diskprobe/DataView.cpp
206
return !fEditor.IsReadOnly()
src/apps/diskprobe/DataView.cpp
275
fEditor.Undo();
src/apps/diskprobe/DataView.cpp
279
fEditor.Redo();
src/apps/diskprobe/DataView.cpp
288
if (fEditor.Replace(fOffset + fStart, (const uint8 *)data, size) != B_OK)
src/apps/diskprobe/DataView.cpp
344
if (fEditor.Replace(fOffset + fStart, (const uint8 *)data, length) == B_OK)
src/apps/diskprobe/DataView.cpp
98
fEditor(editor),
src/apps/diskprobe/DataView.h
99
DataEditor& fEditor;
src/apps/diskprobe/ProbeView.cpp
1049
fEditor.SetTo(*ref, attribute);
src/apps/diskprobe/ProbeView.cpp
1058
fHeaderView = new HeaderView(&fEditor.Ref(), fEditor);
src/apps/diskprobe/ProbeView.cpp
1061
fDataView = new DataView(fEditor);
src/apps/diskprobe/ProbeView.cpp
1094
fEditor.StopWatching(this);
src/apps/diskprobe/ProbeView.cpp
1113
BNode node(&fEditor.AttributeRef());
src/apps/diskprobe/ProbeView.cpp
1136
message->AddRef("refs", &fEditor.AttributeRef());
src/apps/diskprobe/ProbeView.cpp
1225
fEditorLooper = new EditorLooper(fEditor.Ref().name, fEditor,
src/apps/diskprobe/ProbeView.cpp
1229
fEditor.StartWatching(this);
src/apps/diskprobe/ProbeView.cpp
1243
BMenu* menu = new BMenu(fEditor.IsAttribute()
src/apps/diskprobe/ProbeView.cpp
1244
? B_TRANSLATE("Attribute") : fEditor.IsDevice()
src/apps/diskprobe/ProbeView.cpp
1262
fUndoMenuItem->SetEnabled(fEditor.CanUndo());
src/apps/diskprobe/ProbeView.cpp
1266
fRedoMenuItem->SetEnabled(fEditor.CanRedo());
src/apps/diskprobe/ProbeView.cpp
1330
if (directory.SetTo(&fEditor.AttributeRef()) == B_OK
src/apps/diskprobe/ProbeView.cpp
1334
fEditor.File().GetVolume(&volume);
src/apps/diskprobe/ProbeView.cpp
1336
if (!fEditor.IsAttribute() && volume.InitCheck() == B_OK
src/apps/diskprobe/ProbeView.cpp
1383
fEditor.IsDevice() && fEditor.BlockSize() == blockSizes[i]
src/apps/diskprobe/ProbeView.cpp
1388
if (fEditor.BlockSize() == blockSizes[i])
src/apps/diskprobe/ProbeView.cpp
1395
fEditor.BlockSize());
src/apps/diskprobe/ProbeView.cpp
1398
message->AddInt32("block_size", fEditor.BlockSize());
src/apps/diskprobe/ProbeView.cpp
1496
&& (off_t)(position * fEditor.BlockSize()) < fEditor.FileSize());
src/apps/diskprobe/ProbeView.cpp
1509
fSwappedMenuItem->SetEnabled(position >= 0 && (off_t)(position * fEditor.BlockSize()) < fEditor.FileSize());
src/apps/diskprobe/ProbeView.cpp
1553
off_t block = position / fEditor.BlockSize();
src/apps/diskprobe/ProbeView.cpp
1621
fTypeView = new TypeView("type shell", index, fEditor);
src/apps/diskprobe/ProbeView.cpp
1701
status_t status = fEditor.Save();
src/apps/diskprobe/ProbeView.cpp
1727
if (!fEditor.IsModified())
src/apps/diskprobe/ProbeView.cpp
1818
BAutolock locker(fEditor);
src/apps/diskprobe/ProbeView.cpp
1820
if (fEditor.SetViewSize(blockSize) == B_OK
src/apps/diskprobe/ProbeView.cpp
1821
&& fEditor.SetBlockSize(blockSize) == B_OK)
src/apps/diskprobe/ProbeView.cpp
1822
fHeaderView->SetTo(fEditor.ViewOffset(), blockSize);
src/apps/diskprobe/ProbeView.cpp
1898
fEditor.ForceUpdate();
src/apps/diskprobe/ProbeView.cpp
1906
if (fEditor.IsAttribute()) {
src/apps/diskprobe/ProbeView.cpp
1907
if (!strcmp(name, fEditor.Attribute()))
src/apps/diskprobe/ProbeView.cpp
1908
fEditor.ForceUpdate();
src/apps/diskprobe/ProbeView.cpp
192
DataEditor& fEditor;
src/apps/diskprobe/ProbeView.cpp
886
fEditor(editor),
src/apps/diskprobe/ProbeView.cpp
890
fEditor.StartWatching(this);
src/apps/diskprobe/ProbeView.cpp
896
fEditor.StopWatching(this);
src/apps/diskprobe/ProbeView.cpp
917
BAutolock locker(fEditor);
src/apps/diskprobe/ProbeView.cpp
918
fEditor.SetViewOffset(position);
src/apps/diskprobe/ProbeView.cpp
921
message.AddInt64("start", position - fEditor.ViewOffset());
src/apps/diskprobe/ProbeView.cpp
922
message.AddInt64("end", position - fEditor.ViewOffset());
src/apps/diskprobe/ProbeView.cpp
932
if (fEditor.Lock()) {
src/apps/diskprobe/ProbeView.cpp
933
fEditor.UpdateIfNeeded(&updated);
src/apps/diskprobe/ProbeView.cpp
934
fEditor.Unlock();
src/apps/diskprobe/ProbeView.cpp
977
BAutolock locker(fEditor);
src/apps/diskprobe/ProbeView.cpp
981
off_t foundAt = fEditor.Find(startAt, data, dataSize, caseInsensitive,
src/apps/diskprobe/ProbeView.cpp
984
fEditor.SetViewOffset(foundAt);
src/apps/diskprobe/ProbeView.cpp
988
message.AddInt64("start", foundAt - fEditor.ViewOffset());
src/apps/diskprobe/ProbeView.cpp
989
message.AddInt64("end", foundAt + dataSize - 1 - fEditor.ViewOffset());
src/apps/diskprobe/ProbeView.h
44
DataEditor& Editor() { return fEditor; }
src/apps/diskprobe/ProbeView.h
60
DataEditor fEditor;
src/apps/diskprobe/TypeEditors.cpp
1000
BMemoryIO stream(data, fEditor.FileSize());
src/apps/diskprobe/TypeEditors.cpp
1026
switch (fEditor.Type()) {
src/apps/diskprobe/TypeEditors.cpp
1090
fEditor.SetViewSize(viewSize);
src/apps/diskprobe/TypeEditors.cpp
1227
BAutolock locker(fEditor);
src/apps/diskprobe/TypeEditors.cpp
1229
size_t viewSize = fEditor.ViewSize();
src/apps/diskprobe/TypeEditors.cpp
1231
if ((off_t)viewSize < fEditor.FileSize())
src/apps/diskprobe/TypeEditors.cpp
1232
fEditor.SetViewSize(fEditor.FileSize());
src/apps/diskprobe/TypeEditors.cpp
1235
if (fEditor.GetViewBuffer((const uint8 **)&buffer) == B_OK) {
src/apps/diskprobe/TypeEditors.cpp
1242
fEditor.SetViewSize(viewSize);
src/apps/diskprobe/TypeEditors.cpp
1249
fEditor.StartWatching(this);
src/apps/diskprobe/TypeEditors.cpp
1258
fEditor.StopWatching(this);
src/apps/diskprobe/TypeEditors.cpp
190
return uint64(fEditor.FileSize()) / B_PAGE_SIZE < info.max_pages / 2;
src/apps/diskprobe/TypeEditors.cpp
218
BAutolock locker(fEditor);
src/apps/diskprobe/TypeEditors.cpp
220
size_t viewSize = fEditor.ViewSize();
src/apps/diskprobe/TypeEditors.cpp
222
if ((off_t)viewSize < fEditor.FileSize())
src/apps/diskprobe/TypeEditors.cpp
223
fEditor.SetViewSize(fEditor.FileSize());
src/apps/diskprobe/TypeEditors.cpp
226
if (fEditor.GetViewBuffer((const uint8 **)&buffer) == B_OK) {
src/apps/diskprobe/TypeEditors.cpp
232
fEditor.SetViewSize(viewSize);
src/apps/diskprobe/TypeEditors.cpp
240
fEditor.Replace(0, (const uint8 *)fTextView->Text(),
src/apps/diskprobe/TypeEditors.cpp
249
fEditor.StartWatching(this);
src/apps/diskprobe/TypeEditors.cpp
258
fEditor.StopWatching(this);
src/apps/diskprobe/TypeEditors.cpp
292
BAutolock locker(fEditor);
src/apps/diskprobe/TypeEditors.cpp
295
if (fEditor.GetViewBuffer((const uint8 **)&mimeType) == B_OK) {
src/apps/diskprobe/TypeEditors.cpp
306
fEditor.Replace(0, (const uint8*)fTextControl->Text(),
src/apps/diskprobe/TypeEditors.cpp
316
return fEditor.FileSize() <= B_MIME_TYPE_LENGTH;
src/apps/diskprobe/TypeEditors.cpp
324
fEditor.StartWatching(this);
src/apps/diskprobe/TypeEditors.cpp
333
fEditor.StopWatching(this);
src/apps/diskprobe/TypeEditors.cpp
344
fEditor.Replace(0, (const uint8 *)fTextControl->Text(),
src/apps/diskprobe/TypeEditors.cpp
380
if (fEditor.Lock()) {
src/apps/diskprobe/TypeEditors.cpp
382
if (fEditor.GetViewBuffer((const uint8**)&number) == B_OK) {
src/apps/diskprobe/TypeEditors.cpp
385
switch (fEditor.Type()) {
src/apps/diskprobe/TypeEditors.cpp
471
fEditor.Unlock();
src/apps/diskprobe/TypeEditors.cpp
479
return fEditor.FileSize() >= (off_t)_Size();
src/apps/diskprobe/TypeEditors.cpp
493
switch (fEditor.Type()) {
src/apps/diskprobe/TypeEditors.cpp
580
fEditor.Replace(0, buffer, _Size());
src/apps/diskprobe/TypeEditors.cpp
588
switch (fEditor.Type()) {
src/apps/diskprobe/TypeEditors.cpp
626
switch (fEditor.Type()) {
src/apps/diskprobe/TypeEditors.cpp
657
switch (fEditor.Type()) {
src/apps/diskprobe/TypeEditors.cpp
703
fEditor.StartWatching(this);
src/apps/diskprobe/TypeEditors.cpp
712
fEditor.StopWatching(this);
src/apps/diskprobe/TypeEditors.cpp
773
if (fEditor.FileSize() != 1)
src/apps/diskprobe/TypeEditors.cpp
776
if (fEditor.Lock()) {
src/apps/diskprobe/TypeEditors.cpp
778
if (fEditor.GetViewBuffer((const uint8 **)&buffer) == B_OK)
src/apps/diskprobe/TypeEditors.cpp
781
fEditor.Unlock();
src/apps/diskprobe/TypeEditors.cpp
799
fEditor.StartWatching(this);
src/apps/diskprobe/TypeEditors.cpp
806
fEditor.StopWatching(this);
src/apps/diskprobe/TypeEditors.cpp
817
fEditor.Replace(0, (const uint8 *)&boolean, 1);
src/apps/diskprobe/TypeEditors.cpp
893
fEditor.StartWatching(this);
src/apps/diskprobe/TypeEditors.cpp
904
fEditor.StopWatching(this);
src/apps/diskprobe/TypeEditors.cpp
943
BAutolock locker(fEditor);
src/apps/diskprobe/TypeEditors.cpp
947
size_t viewSize = fEditor.ViewSize();
src/apps/diskprobe/TypeEditors.cpp
949
if ((off_t)viewSize < fEditor.FileSize())
src/apps/diskprobe/TypeEditors.cpp
950
fEditor.SetViewSize(fEditor.FileSize());
src/apps/diskprobe/TypeEditors.cpp
953
if (fEditor.GetViewBuffer((const uint8 **)&data) != B_OK) {
src/apps/diskprobe/TypeEditors.cpp
954
fEditor.SetViewSize(viewSize);
src/apps/diskprobe/TypeEditors.cpp
958
if (fBitmap != NULL && (fEditor.Type() == B_MINI_ICON_TYPE
src/apps/diskprobe/TypeEditors.cpp
959
|| fEditor.Type() == B_LARGE_ICON_TYPE)) {
src/apps/diskprobe/TypeEditors.cpp
961
fBitmap->SetBits(data, fEditor.FileSize(), 0, B_CMAP8);
src/apps/diskprobe/TypeEditors.cpp
962
fEditor.SetViewSize(viewSize);
src/apps/diskprobe/TypeEditors.cpp
965
if (fBitmap != NULL && fEditor.Type() == B_VECTOR_ICON_TYPE
src/apps/diskprobe/TypeEditors.cpp
968
(size_t)fEditor.FileSize(), fBitmap) == B_OK) {
src/apps/diskprobe/TypeEditors.cpp
969
fEditor.SetViewSize(viewSize);
src/apps/diskprobe/TypeEditors.cpp
977
switch (fEditor.Type()) {
src/apps/diskprobe/TypeEditors.cpp
981
fBitmap->SetBits(data, fEditor.FileSize(), 0, B_CMAP8);
src/apps/diskprobe/TypeEditors.cpp
986
fBitmap->SetBits(data, fEditor.FileSize(), 0, B_CMAP8);
src/apps/diskprobe/TypeEditors.cpp
993
(size_t)fEditor.FileSize(), fBitmap) != B_OK) {
src/apps/diskprobe/TypeEditors.h
25
DataEditor& fEditor;
src/apps/drivesetup/AbstractParametersPanel.cpp
127
fOkButton->SetEnabled(fEditor->ValidateParameters());
src/apps/drivesetup/AbstractParametersPanel.cpp
160
status = partition->GetParameterEditor(type, &fEditor);
src/apps/drivesetup/AbstractParametersPanel.cpp
168
status = addOn->GetParameterEditor(type, &fEditor);
src/apps/drivesetup/AbstractParametersPanel.cpp
179
if (fEditor == NULL)
src/apps/drivesetup/AbstractParametersPanel.cpp
182
AddControls(builder, fEditor->View());
src/apps/drivesetup/AbstractParametersPanel.cpp
193
if (fEditor != NULL) {
src/apps/drivesetup/AbstractParametersPanel.cpp
194
fEditor->SetTo(partition);
src/apps/drivesetup/AbstractParametersPanel.cpp
195
fEditor->SetModificationMessage(new BMessage(kParameterChanged));
src/apps/drivesetup/AbstractParametersPanel.cpp
204
if (fEditor == NULL && NeedsEditor()) {
src/apps/drivesetup/AbstractParametersPanel.cpp
237
if (fEditor != NULL && fEditor->ValidateParameters()) {
src/apps/drivesetup/AbstractParametersPanel.cpp
238
status_t status = fEditor->GetParameters(parameters);
src/apps/drivesetup/AbstractParametersPanel.cpp
83
fEditor(NULL),
src/apps/drivesetup/AbstractParametersPanel.h
53
BPartitionParameterEditor* fEditor;
src/apps/drivesetup/ChangeParametersPanel.cpp
68
if (fEditor != NULL) {
src/apps/drivesetup/ChangeParametersPanel.cpp
71
fEditor->ParameterChanged("type", BVariant(type));