This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax on | |
set ignorecase | |
set ru | |
set nu | |
set showcmd | |
set autoindent | |
set hlsearch | |
set cin | |
set smartindent | |
set nobackup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
QPixmap GraphicsItem::toPixmap() const | |
{ | |
if (!scene()) { | |
qWarning() << "[ControlItem::toPixmap] scene is null."; | |
return QPixmap(); | |
} | |
QRectF r = boundingRect(); | |
QPixmap pixmap(r.width(), r.height()); | |
pixmap.fill(QColor(0, 0, 0, 0)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static bool cpDir(const QString &srcPath, const QString &dstPath) | |
{ | |
rmDir(dstPath); | |
QDir parentDstDir(QFileInfo(dstPath).path()); | |
if (!parentDstDir.mkdir(QFileInfo(dstPath).fileName())) | |
return false; | |
QDir srcDir(srcPath); | |
foreach(const QFileInfo &info, srcDir.entryInfoList(QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot)) { | |
QString srcItemPath = srcPath + "/" + info.fileName(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void WorkspaceView::mousePressEvent(QMouseEvent *event) | |
{ | |
Q_D(WorkspaceView); | |
QGraphicsView::mousePressEvent(event); | |
if (event->button()==Qt::MiddleButton) { | |
d->m_lastPanPosition = event->pos(); | |
d->m_panning = true; | |
setCursor(Qt::ClosedHandCursor); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aaaa | |
bbbb | |
cccc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Private member variable | |
NSString * _name; | |
int _age; | |
- (void)theFunction { | |
if (b>1) { | |
for (int i=0;i<3;i++) { | |
NSLog(@"Foo"); | |
} | |
} else { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<com.siegfried.myapplication.CustomKeyboardView | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:orientation="vertical" android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:keyBackground="@drawable/keyboard_background" | |
android:background="@drawable/keyboard_background"> | |
</com.siegfried.myapplication.CustomKeyboardView> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RxMediaPlayer { | |
public static final int DEFAULT_SAMPLING_MILLIS = 33; | |
public enum State { | |
IDLE("idle"), | |
INITIALIZED("initialize"), | |
PREPARING("preparing"), | |
PREPARED("prepared"), | |
STARTED("started"), | |
STOPPED("stopped"), | |
PAUSED("paused"), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RxKeyboardVisibilityDetector { | |
public final static class Change { | |
public final boolean visible; | |
public final int height; | |
Change(boolean visible, int height) { | |
this.visible = visible; | |
this.height = height; | |
} | |
@Override | |
public String toString() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RxMediaRecorder { | |
public enum State { | |
INITIAL("initial"), | |
INITIALIZED("initialized"), | |
DATASOURCE_CONFIGURED("data_source_configured"), | |
PREPARED("prepared"), | |
RECORDING("recording"), | |
STOPPED("stopped"), | |
PAUSED("paused"), | |
PLAYBACK_COMPLETED("completed"), |
OlderNewer