HomeSort by relevance Sort by last modified time
    Searched refs:canUndo (Results 1 - 25 of 50) sorted by null

1 2

  /gdk/samples/PhotoEditor/src/com/android/photoeditor/
ActionBar.java 66 boolean canUndo = (msg.arg1 > 0);
68 enableButton(quickview, canUndo);
69 enableButton(save, canUndo);
70 enableButton(undo, canUndo);
161 public void onStackChanged(boolean canUndo, boolean canRedo) {
164 handler.sendMessage(handler.obtainMessage(ENABLE_BUTTON, canUndo ? 1 : 0, canRedo ? 1 : 0));
FilterStack.java 39 void onStackChanged(boolean canUndo, boolean canRedo);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 90 virtual bool canUndo() const;
EditorClientAndroid.cpp 216 bool EditorClientAndroid::canUndo() const { return false; }
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.h 87 virtual bool canUndo() const;
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 84 virtual bool canUndo() const;
EditorClientHaiku.cpp 217 bool EditorClientHaiku::canUndo() const
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.h 84 virtual bool canUndo() const;
EditorClientQt.cpp 272 bool EditorClientQt::canUndo() const
277 return m_page->undoStack()->canUndo();
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.h 86 virtual bool canUndo() const;
  /external/webkit/Source/WebCore/page/
EditorClient.h 113 virtual bool canUndo() const = 0;
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 113 virtual bool canUndo() const;
EditorClientGtk.cpp 514 bool EditorClient::canUndo() const
526 if (canUndo()) {
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h 83 bool canUndo() const;
WebInspectorDelegate.h 240 virtual HRESULT STDMETHODCALLTYPE canUndo(
WebEditorClient.cpp 577 bool WebEditorClient::canUndo() const
582 uiDelegate->canUndo(&result);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.h 74 virtual bool canUndo() const;
  /external/webkit/Tools/DumpRenderTree/win/
UIDelegate.cpp 96 bool canUndo() { return !m_undoStack->isEmpty(); }
144 if (!canUndo())
261 HRESULT STDMETHODCALLTYPE UIDelegate::canUndo(
267 *result = m_undoManager->canUndo();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
HistoryAdapter.java 69 public boolean canUndo() {
85 mUndoMenuItem.setEnabled(canUndo());
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.h 84 virtual bool canUndo() const;
EditorClientImpl.cpp 333 bool EditorClientImpl::canUndo() const
345 if (canUndo()) {
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.h 112 virtual bool canUndo() const;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 80 virtual bool canUndo() const;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebUndoManager.idl 53 - (BOOL)canUndo
55 HRESULT canUndo([out, retval] BOOL* result);
  /external/webkit/Tools/WinLauncher/
PrintWebUIDelegate.h 87 virtual HRESULT STDMETHODCALLTYPE canUndo(BOOL*) { return E_NOTIMPL; }

Completed in 179 milliseconds

1 2