X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fmain.cpp;fp=src%2Fmain.cpp;h=3db6372f67f5202589de44fc47d435eeeccad5b0;hb=cb7aa009ef9873967152e716fb01fecc30d401f7;hp=6ab953008c4b306bd0edf9bd6d4ba0767b4b026c;hpb=5a1dc65ef626bbf487c5ed33a7ffe62cbe45c72a;p=src%2Fwindow-management-client-grpc.git diff --git a/src/main.cpp b/src/main.cpp index 6ab9530..3db6372 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -48,6 +48,7 @@ enum mode { ON_OTHER_OUTPUTS = 4, SET_FLOAT_POS = 5, SCALE = 6, + SPLIT = 7, }; static QWindow * @@ -87,12 +88,14 @@ int main(int argc, char *argv[]) mmode = SET_FLOAT_POS; else if (strcmp(argv[1], "scale") == 0) mmode = SCALE; + else if (strcmp(argv[1], "split") == 0) + mmode = SPLIT; else assert(!"Invalid mode"); if (mmode != FLOAT && mmode != FULLSCREEN && mmode != ON_OTHER_OUTPUTS && mmode != SET_FLOAT_POS && - mmode != SCALE) { + mmode != SCALE && mmode != SPLIT) { fprintf(stderr, "Will not use rpc\n"); goto skip; } @@ -100,6 +103,9 @@ int main(int argc, char *argv[]) if (mmode == ON_OTHER_OUTPUTS) output_name = argv[2]; + if (mmode == SPLIT) + output_name = argv[2]; + // start grpc connection GrpcClient *client = new GrpcClient(); @@ -140,6 +146,11 @@ int main(int argc, char *argv[]) client->SetAppScale(myname.toStdString(), 200, 200); exit(EXIT_SUCCESS); break; + case SPLIT: + // put it on the bottom + client->SetAppSplit(myname.toStdString(), 4, 0, 0, + std::string(output_name)); + break; default: break; }