Lines Matching refs:nextProp
619 nextProp;
659 nextProp = 0;
684 stringProps[nextProp] = TRUE;
685 props[nextProp].value =
687 if (!props[nextProp].value)
691 stringProps[nextProp] = FALSE;
692 props[nextProp].value = atoi(secondbuf);
705 stringProps[nextProp] = TRUE;
706 props[nextProp].value =
708 if (!props[nextProp].value)
716 props[nextProp].name = bdfForceMakeAtom(namebuf, NULL);
717 if (props[nextProp].name == None) {
721 if (!bdfSpecialProperty(pFont, &props[nextProp],
722 stringProps[nextProp], pState))
723 nextProp++;
740 props[nextProp].name = bdfForceMakeAtom("POINT_SIZE", NULL);
741 props[nextProp].value = (INT32) (pState->pointSize * 10.0);
742 stringProps[nextProp] = FALSE;
743 pState->pointSizeProp = &props[nextProp];
744 nextProp++;
747 props[nextProp].name = bdfForceMakeAtom("FONT", NULL);
748 props[nextProp].value = (INT32) bdfForceMakeAtom(pState->fontName, NULL);
749 stringProps[nextProp] = TRUE;
750 pState->fontProp = &props[nextProp];
751 nextProp++;
754 props[nextProp].name = bdfForceMakeAtom("WEIGHT", NULL);
755 props[nextProp].value = -1; /* computed later */
756 stringProps[nextProp] = FALSE;
757 pState->weightProp = &props[nextProp];
758 nextProp++;
762 props[nextProp].name = bdfForceMakeAtom("RESOLUTION", NULL);
763 props[nextProp].value = (INT32) ((pState->resolution_x * 100.0) / 72.27);
764 stringProps[nextProp] = FALSE;
765 pState->resolutionProp = &props[nextProp];
766 nextProp++;
769 props[nextProp].name = bdfForceMakeAtom("RESOLUTION_X", NULL);
770 props[nextProp].value = (INT32) pState->resolution_x;
771 stringProps[nextProp] = FALSE;
772 pState->resolutionProp = &props[nextProp];
773 nextProp++;
776 props[nextProp].name = bdfForceMakeAtom("RESOLUTION_Y", NULL);
777 props[nextProp].value = (INT32) pState->resolution_y;
778 stringProps[nextProp] = FALSE;
779 pState->resolutionProp = &props[nextProp];
780 nextProp++;
783 props[nextProp].name = bdfForceMakeAtom("X_HEIGHT", NULL);
784 props[nextProp].value = -1; /* computed later */
785 stringProps[nextProp] = FALSE;
786 pState->xHeightProp = &props[nextProp];
787 nextProp++;
790 props[nextProp].name = bdfForceMakeAtom("QUAD_WIDTH", NULL);
791 props[nextProp].value = -1; /* computed later */
792 stringProps[nextProp] = FALSE;
793 pState->quadWidthProp = &props[nextProp];
794 nextProp++;
796 pFont->info.nprops = nextProp;